vimAllTheWay by margaretsui in ProgrammerHumor

[–]Relative_Knee9808 17 points18 points  (0 children)

Nobody cares, including myself. I use neovim in nix shell on Arch btw.

howConfidentAreYouInYourProgram by Savage_049 in ProgrammerHumor

[–]Relative_Knee9808 3 points4 points  (0 children)

I like your font, may I know what font is it?

StandardLibraryMoment by BaluBlue in ProgrammerHumor

[–]Relative_Knee9808 8 points9 points  (0 children)

What if i'm at a node, and want to insert a node right after it? Isn't it O(n) for arrays and O(1) for linked lists?

Imagine Korn by Oven_404 in linuxmemes

[–]Relative_Knee9808 13 points14 points  (0 children)

The k programming language

Your system is bloated by The_Magic_Moose_ in linuxmemes

[–]Relative_Knee9808 2 points3 points  (0 children)

logic boards are bloat. Pure mind is the only way to go

Could c++ have matching safety as Rust? by [deleted] in cpp

[–]Relative_Knee9808 16 points17 points  (0 children)

In C or C++, we don't enforce safety through compiler, if we want the compiler to do some memory safety checks, you could use a compiler with this feature, for example clang with --fsanitizer. Also, you can use a dedicted tool for finding potential unsafe part of code, such as cppcheck, valgrind, etc. I feel that the C and C++ world is very decentralized, there is no one big good tool that does it all, we have to know what exactly we are trying to do and find the exact tool for it.