This is the same, except for one additional slur word.
Deleted Comment
I wrote it to share my implementation and my experience with it.
SumatraPDF compiles fast (relative to other C++ software) and is smaller, faster and uses less resources that other software.
Is it because I wrote Func0 and Func1 to replace std::function? No.
Is it because I made hundreds decisions like that? Yes.
You're not wrong that performance wins are miniscule.
What you don't understand is that eternal vigilance is the price of liberty. And small, fast software.
The one thing the author's solution does which this solution (and lambdas) does not is type erasure: if you want to pass that closure around, you have to use templates, and you can't store different lambdas in the same data structure even if they have the same signature.
You could solve that in your case by making `void operator()` virtual and inheriting (though that means you have to heap-allocate all your lambdas), or use `std::function<>`, which is a generic solution to this problem (which may or may not allocate, if the lambda is small enough, it's usually optimized to be stored inline).
I get where the author is coming from, but this seems very much like an inferior solution to just using `std::function<>`.
You can't say an opinion is false - it's an opinion.
The fact is though, that the Biographical Questionaire affected hiring. Did it make a noticeable difference though? Who knows. We just know for certain that people who studied for this job didn't get in.
I agree that op thought: > [that] there's [no] debate that ATC staffing is a major issue right now, and the FAA really did blow up its hiring pipeline to further DEI goals
Grandparent only said that there is clearly debate over this.
To say that no-one can disagree with op, or point out an opposing point of view, because is their opinion, is not furthering discussion.
Note: I have an older Tesla, and actually quite like it. I don't have FSD, but I do have enhanced autopilot (EAP) and like it as well. That said, it is very easy to believe that people ignore the road for longer than they should with FSD/EAP turned on.
The grandparent comment also didn't mention the split between FSD miles/non-FSD miles. It is possible that FSD is so good, that every Tesla driver becomes useless when they are required to drive for themselves, and that is what drives the higher accident rate.
As my school-funded GitHub education pack is about to expire, I have to let go of the InitelliJ IDEs and I decided to sell my soul and use NeoVim. I am already using Ubuntu after all, so why not continue the 10x cargo culting?
I soon realized that NeoVim is hard. I keep on forgetting how to do things. I figured the best course of action to take would be to start a project that I am writing entirely with using NeoVim... and I figured I'll build a cheat sheet for myself! I was not really satisfied with the existing cheat sheets as I couldn't really search in them and save my favorites to look them up later.
I decided to deploy it after all, so I can look on it on my phone as well. Then I figured, why do not I open source it, so the community can also help broaden this app?
I already feature a search by keyword, category and the favourites function. I plan to add popular remaps also and command breakdowns, to understand why and how eg. 'ggVP' highlights all the texts.
Perhaps I'll add guides later on too.
Enjoy! Now excuse me but I have to configure an LSP for JavaScript...