@jgarber I used my static site generator to compile C files to .o files and link them, with proper #include dependency tracking and frankly I think incremental+live compilation would also work

Just saying this to encourage the chaos 😅

Given an array of strings in which all characters are of the same case, write a C function to sort them alphabetically.  The idea is to use qsort() in C and write a comparison function that uses strcmp() to compare two strings.  C #include #include #include   // Defining comparator function as per the requirement static int myCompare(const void* a, const void* b)       // setting up rules for comparison  ...
https://neveropen.tech/c-program-to-sort-an-array-of-names-or-strings/?fsp_sid=37814

ゴミは速やかにゴミ箱へ
Світе, швидко викидай своє сміття у смітник.
Інакше настане червона зима.

https://www.deviantart.com/poison-raika/art/Gomi-wa-Sumiyaka-ni-Komibako-e-1228640282

<>

#trash #immediately #priority #essential #include #people #specific #example #certain #Hanafuda #President #more #Emperor #mercy #currently #impose #death #sentence #Ukraine #world #blind #eye #contamination #touche #result

Gomi wa Sumiyaka ni Komibako e by poison-raika on DeviantArt

ゴミは速やかにゴミ箱へ
Світе, швидко викидай своє сміття у смітник.
Інакше настане червона зима.

https://www.pixiv.net/novel/show.php?id=25557218

<>

#trash #immediately #priority #essential #include #people #specific #example #certain #Hanafuda #President #more #Emperor #mercy #currently #impose #death #sentence #Ukraine #world #blind #eye #contamination #touche #result

#Ukraine #immediately  ゴミは速やかにゴミ箱へ Негайно викинути - pixiv

ゴミは速やかにゴミ箱に捨てるが先決かつ必要不可欠、それはゴミ人間を含む。 具体的な例を挙げるなら、とある花札大統領(♠️♥️♣️♦ゴミ)、あれはプリン皇帝のキャラメルソースでしかない。皇帝の意のままになって、ウクライナに死罪判決を強いようとしているのが現状。では世界の国々はと言え

pixiv

Seems like cl-electron knew about this issue and patched nan to remove this file. While I'm now able to build the "synchronous-sockets" node module, I still get into the situation where NODE_MODULE_VERSION mismatches.

"postinstall": "sed 's/^#include .nan_scriptorigin\\.h./\\/\\/ #include nan_scriptorigin.h/' ./node_modules/nan/nan.h > ./node_modules/nan/nan.h.new && mv ./node_modules/nan/nan.h.new ./node_modules/nan/nan.h && electron-builder install-app-deps",

Ref https://github.com/atlas-engineer/cl-electron/blob/master/package.json#L16

cl-electron/package.json at master · atlas-engineer/cl-electron

Lisp Interface to Electron. Contribute to atlas-engineer/cl-electron development by creating an account on GitHub.

GitHub
Given a 32-bit floating point number x stored in IEEE 754 floating point format, find the inverse square root of x, i.e., x-1/2.A simple solution is to do floating point arithmetic. Following is an example function.  C++14 #include using namespace std;   float InverseSquareRoot(float x)     return 1/sqrt(x);   int main()     cout
https://neveropen.tech/fast-method-to-calculate-inverse-square-root-of-a-floating-point-number-in-ieee-754-format/?fsp_sid=35970

imgui is so carefully curated and maintained with a clear mind for architecture and scalability and that's in response in part to how widely it's used but it definitely makes the just faceroll programming of the some of the popular plugins people have made feel extra egregious.

I know its foss, its volunteer, these devs dont owe anybody anything, but good god some of this is "added a drop-in implementation of thing! just #include boost and implement this interface! immediate mode is hard!"

@dalias @khm The meaning never changed, it has always meant classic Mac OS or OS X(+derivatives). See TargetConditionals.h from 10.1: https://github.com/phracker/MacOSX-SDKs/blob/master/MacOSX10.1.5.sdk/usr/include/TargetConditionals.h

The bug is that zutil.h doesn’t include TargetConditionals.h, so TARGET_OS_MAC wasn’t defined on OS X until the Clang change.

(On Classic, TargetConditionals was probably pulled in through a precompiled or system header)

I agree Clang shouldn’t define these without a TC.h #include, but that ship sailed long ago:
https://github.com/llvm/llvm-project/pull/74676

@benbrown Now that would be my epitaph for my tombstone, coded in C:

// [my name here as an author]
// [my birthdate] - [my deathdate]

#include <stdio.h>

main() {
printf("Goodbye world!\n");
}

Fast and generic vectors in C by attractive chaos #include "kvec.h" Ref : attractivechaos.wordpress.com/2008/09/22/a... #C #MacroMagic #Generics