Do you have backup discs for the Apple machine? Maybe research if it will accept Linux or BSD? HM…
I see, thanks all for answering. I decided I will surrender myself to using SDL for now and come b…
Instead of all this manual work or wrappers you could simply use modern compiler features like Ad…
That's not really true. It gives more control over resource allocation, but it's nowhere close to…
Just want to point out -- some recent technologies are aimed at making this a lot better. For exam…
His argument against operator overloading didn't convince me to abandon C++. I just read the docum…
There is some of functionality in macOS that is accessible just by C code, but for most of stuff i…
Miles —
SDL relies on Objective-C APIs on macos. It's not written entirely in C. Theoretically there may b…
The problem is that the same protocol is being used for too many things at the same time without t…
SDL is written in C, so using the system calls directly should work in theory. Newer versions of t…
Deep modifications will have to be patched when the compiler gets updated or replaced, so I would …
Hey guys, My pc fried and I have no longer windows. Is it possible to open a window, get events, r…
Molly Rocket doesn't host those sites either. Google does (via Firebase). Google procures the SS…
You'll need to talk to Casey about that - he's maintaining handmadehero.org domain & website. I be…
Not sure if this belongs here, Mods feel free to remove/move as needed. I was browsing CMuratori's…
The primary reason is that you're still running inside a web engine, when most of the interesting…
You can not give raw access to hardware. No GPU, no filesystems. There are security concerns. Web…
This is not how scaling a matrix works: As I said in my first reply, I recommend you work through…
Continuing from our , let's look are some more possibilities and maybe find a solution. The previ…
By this you mean that newest versions of Clang can make my modifications no longer working? Don't…
It is practical, but it will require understanding large parts of clang. I have done some custom a…
I was wondering... How practical it would be to grab Clang source code and modify it to make C pro…
Do you propose something like ? Maybe you could show an example.
Miles —
Different operators, as I've already said multiple times. Like what zig provides for wrapping (i.…
Hello! Recently I have been really buckling down on getting error-driven encoder/decoder pairs to …
If you do not have a signedness, how can you determine trapping in an addition, subtraction and m…
Miles —
They actually be encoded as both, because in two's complement encoding (which is what every CPU …
Refactoring is an important part of programming. If you are maintaining a non-trivial code base yo…
So like Java? There are obviously advantages to this, but it also means that some arithmetic must…
I've been writing about various ways of handling integer overflows. The short summary is that the…