QUOTE(Striferuka @ Jul 8 2024, 00:59)

C probably better for OS while C++ is more tailored for other simpler software I guess but you can make OS on C++ as well. What would be better? For C++ is more flexible both in programming and result. C probably takes more time and are less flexible in getting results and programming. Only recently come across C#. This probably sounds like I dont have a clue what I'm talking about but what you think about different C lang? For OS building that is. Maybe all 3 of them. Not sure what would give better result. Maybe I take the assembly route but yes that takes time. So much text for so little.
Don't use C++ to write an OS.
Don't use C++ in general if you care about performance or want anyone else to contribute to your codebase.
It's practically impossible to maintain C++ you didn't write, because no two people do things the same way with it.
And C# is nothing like C at all, it runs in an interpreted/virtual environment like Java does. The name C# is a lie.
If you want your OS to be self-hosting, meaning you can use your OS to compile itself, you will also need to port a C++ compiler. Good fucking luck with that. It's an enormous specification. C is comparatively quite simple.
Microsoft calls the Windows API a "C++ API" but it's pretty much entirely normal C, which happens to be able to be compiled by a C++ compiler because C++ is a superset of C (C with a bunch of garbage bolted on).
I suggest C because it will be easier to adapt to new hardware than assembly. You could also mix some assembly with your C but then you have to understand things like calling conventions which are a little tricky.
If you want your OS to run fast and not use much memory, don't use C++.
And C# for an OS is practically impossible without a large task force.
QUOTE(EsotericSatire @ Jul 8 2024, 00:29)

You can use my tags and set a negative threshold to remove all of the AI galleries from your results.
i have "ai generated" filtered out in the search bar (which automatically has that exclusion written in). That's how I know 33 of 50 results were filtered out on page 1.
This post has been edited by Moonlight Rambler: Jul 8 2024, 09:36