• 1 Post
  • 6 Comments
Joined 1 year ago
cake
Cake day: July 10th, 2023

help-circle

  • Difficult to say right now. While it’s bragged that AI can already “create” games and “webpages”. Current approaches rely heavily on human prompting and trial and error. Plus said dev AIs work best when creating common, simple, short projects. The AI will just auto complete stuff, and if its wrong, well it can’t tell the difference. Actual programs created by humans are multitudes of machines working together in perfect sync. It involves progressive iteration and refactor, as well as requiring many types of languages, data, images, sound, API use, organization, planning, and references (often from closed source programs) if it has any hopes of working.

    Something as ambitious as an OS? Given the size of the task, you might as well wait for the singularity when all bets are off.




  • While I’m not experienced enough to explain the full development stack of an OS. Let me throw my two cents.

    It typically goes by writing changes. If its superficial ones, like modern UI in Windows 11, then all they need to do is relaunch explorer/the app etc. Every time they make a change in the code, they then build and try it out.

    If its a more internal change, deep into the OS. Typically written in C or another low level language. Then its easier to test the changes in a virtual machine, you write your code, compile, build. And then load it up in the virtual machine to see if the OS doesn’t crash and burn.

    Later, after it gets past quality control in the company, (but most often these versions sit in beta for a while to catch problems). It then gets put into the Update servers and rolled out in bulk for mass destribution.

    Do note, updates don’t need to include the entire OS. Just packages including the file changes as well as general update busywork.

    PS: If anyone replies, feel free to correct me. Details may be sketchy but this is the short of it.