The solution is to reintroduce these lost features to the community. Not pretend they dont exist
12:42
Honestly when I see a feature of C++ I'm not familiar with I open up a reference. Honestly I think this is also a skill missing from most new developers. As soon as they think they start to understand a language they think their training ends
12:43
The most important thing to learn is the ability to refer to authoritative resources on any subject you learn really
@Learath2 why do you insist on authoritative sources? it's not like programming is such a political topic where anyone would want to feed you wrong information
doesn't feel like a viable policy. e.g. I'm working on a C++ project, and it uses perl for testing, etc. sometimes you have to write languages you do'nt know
12:53
@Learath2 bad as in factually inaccurate or bad advice?
I make it a point to defer to people who do know things as much as I can, I do know a bit of cmake but I ask the person who actually knows when I don't understand how a construct works
13:03
or just dig into the cmake docs, which are surprisingly decent actually
13:04
Actually, I'd like to weaken my position with "authoritative" sources, although I believe that is a very useful skill, I think the subset of it with referring to "known good" sources is also very important
13:05
Like cppreference for C/C++, it's actually quite useful
I guess yeah, when you want to hack together something, but when you are contributing to a project, I don't think you should be copy pasting stuff from stackoverflow and not even understanding it
Like e.g. yesterday we were trying to help a guy trying to contribute to radare2, he was calling a function in a way that didn't make sense at all, and he had written the function which baffled me
13:08
Turns out he'd just copied over the implementation of the function from a stackoverflow answer and didn't really know how to call it
I mean even if it wasn't radare2, would you be inclined to trust someone that contributes a stackoverflow copypasta to teeworlds and can't even figure out how to call the function he stole?