Tags: #reversing #function
I wanted to take some time to write about dealing with virtual functions in large, ‘enterprisy’ code-bases.
https://alschwalm.com/blog/static/2016/12/17/reversing-c-virtual-functions/
I wanted to take some time to write about dealing with virtual functions in large, ‘enterprisy’ code-bases.
https://alschwalm.com/blog/static/2016/12/17/reversing-c-virtual-functions/
Security Through Obscurity
Reversing C++ Virtual Functions: Part 1
There are a few posts in various parts of the internet discussing reverse engineering C++, and these often address virtual functions to...
Tags: #RAII #memory #destructor
We have RAII in C++ and therefore the totally deterministic destruction of objects. But, what is RAII? That's the topic of this post.
http://www.modernescpp.com/index.php/garbage-collectio-no-thanks
We have RAII in C++ and therefore the totally deterministic destruction of objects. But, what is RAII? That's the topic of this post.
http://www.modernescpp.com/index.php/garbage-collectio-no-thanks
Modernescpp
Garbage Collection - No Thanks - ModernesCpp.com
Tags: #BartlomiejFilipek #Bartek #report2016 #cppStatus
Another year and another C++ Status! It’s hard to believe, but it’s my fifth time I am writing this summary. And, as usually, C++ language is very alive. The biggest news for the year?
http://www.bfilipek.com/2016/12/c-status-at-end-of-2016.html
Another year and another C++ Status! It’s hard to believe, but it’s my fifth time I am writing this summary. And, as usually, C++ language is very alive. The biggest news for the year?
http://www.bfilipek.com/2016/12/c-status-at-end-of-2016.html
Bfilipek
C++ Status at the end of 2016
What happened in 2016 in the C++ world? Read my summary.
Tags: #array vs #vector
" I’m going to start off by building a matrix library and see where it goes."
https://hackernoon.com/c-investigation-arrays-vs-vectors-e9ba864468b6#.n5i3wnn31
" I’m going to start off by building a matrix library and see where it goes."
https://hackernoon.com/c-investigation-arrays-vs-vectors-e9ba864468b6#.n5i3wnn31
Hacker Noon
C++ investigation: Arrays vs Vectors
Goal of these posts
Tags: #string #view #cpp17
"Technically, basic_string_view is an object that can refer to a constant contiguous sequence of char-like objects with the first element of the sequence at position zero."
https://marcoarena.wordpress.com/2017/01/03/string_view-odi-et-amo/
"Technically, basic_string_view is an object that can refer to a constant contiguous sequence of char-like objects with the first element of the sequence at position zero."
https://marcoarena.wordpress.com/2017/01/03/string_view-odi-et-amo/
Growing up
string_view odi et amo
string_view-like wrappers have been successfully used in C++ codebases for years, made possible by libraries like boost::string_ref. I think all of you know that string_view has joined the C++ stan…
Tags: #squares #surfaces #volume #math
"This post generalizes that process to equations of any dimension such as z=f(x,y), w=f(x,y,z) or greater."
http://blog.demofox.org/2017/01/02/incremental-least-squares-surface-and-hyper-volume-fitting/
"This post generalizes that process to equations of any dimension such as z=f(x,y), w=f(x,y,z) or greater."
http://blog.demofox.org/2017/01/02/incremental-least-squares-surface-and-hyper-volume-fitting/
The blog at the bottom of the sea
Incremental Least Squares Surface and Hyper-Volume Fitting
The last post showed how to fit a $latex y=f(x)$ equation to a set of 2d data points, using least squares fitting. It allowed you to do this getting only one data point at a time, and still come up…