For the project I’m currently working on, I’m evaluating options for an embeddable…
For the project I’m currently working on, I’m evaluating options for an embeddable scripting language. Here’s a shortlist I compiled after researching this list: Gravity (Swift-like syntax, one of my favs)Lua (The most popular embedded language)Terra (A …fgetwc, getwc - cppreference.com
How do I enable SSE4.1 and SSE3 (but NOT AVX) in MSVC
stackoverflow.com/questions/64053597/how-do-i-enable-sse4-1- … ↗
SDL2 common mistakes and how to avoid them
{n} times faster than C - part one
How to Create a Modern C Project with CMake and Conan
href.li/?https://abstractexpr.com/2023/04/19/how-to-create-a … ↗
floooh/sokol
Unity C# Tutorials
Swift And C: Everything You Need to Know on Types, Pointers and more
uraimo.com/2016/04/07/swift-and-c-everything-you-need-to-kno … ↗
Writing a Linux Kernel Driver for an Unknown USB Device
matthias.vallentin.net/blog/2007/04/writing-a-linux-kernel-d … ↗
Modern C++ in embedded systems – Part 1: Myth and Reality
embedded.com/design/programming-languages-and-tools/4438660/ … ↗
Obsessive Coding Disorder, Julian Storer - JUCE Summit keynote 2015
Julian Storer, the founder of JUCE, rewrites one of the most used C library in the world, Zlib. In doing so, Julian showcases the coding standards that apply to the JUCE library. Watch on to see how many lines of code Julian managed to reduce Zlib to, while improving drastically …C++ for Games: Performance. Allocations and Data Locality
ithare.com/c-for-games-performance-allocations-and-data-loca … ↗
Clang Environment variable for linker path
stackoverflow.com/questions/26675047/clang-environment-varia … ↗
stb single-file public domain libraries for C/C++
How to C (as of 2016)
ANSI C Lex/Yacc Grammar http://www.quut.com/c/ANSI-C-grammar-y.html…
ANSI C Lex/Yacc Grammar http://www.quut.com/c/ANSI-C-grammar-y.htmlhttp://www.quut.com/c/ANSI-C-grammar-l.htmliroundf A few minutes ago I wrote a rounding function for myself in C.
iroundf A few minutes ago I wrote a rounding function for myself in C. Probably not the best implementation, but it works all right. If you’re interested, check it out (I’ve put some sample values in the comments): int iroundf(float value){ if(value > 0.0) { int …C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out:…
C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out: Instead of writing: if (function1()) function2(); you could write: function1() && function2(); because the right side of the && operator is only evaluated (in this case: called), …