Best of C Programming — September 2023
- 1
- 2
It's Foss·3y
21 Useful Terminal Shortcuts Pro Linux Users Love
21 Useful Terminal Shortcuts Pro Linux Users love learning the Linux commands. You have no idea how helpful they are until you know how to use them to make your terminal sessions super productive. In this tutorial, I will walk you through the top terminal shortcuts with examples of how to Use them.
- 3
Pointer·3y
ashvardanian/StringZilla: 10x faster string search, split, sort, and shuffle for long strings and multi-gigabyte files in Python and C, leveraging SIMD with Arm Neon and x86 AVX2 & AVX-512 intrinsics
StringZilla uses a heuristic so simple it's almost stupid... but it works. It matches the first few letters of words with hyper-scalar code to achieve speeds. The implementation fits into a single C 99 header file and uses different SIMD flavors and SWAR on older platforms.
- 4
- 5
Code Maze·3y
Using a Discard Variable in C#
C# 7 introduced discards as placeholders for values we do not have any use for in our code. They are write-only variables that allow us to explicitly inform the compiler or anyone reading our code to discard their content. They are particularly useful in scenarios where we receive a value but have no intention of using it.