Python OS

Discussions on more advanced topics such as monolithic vs micro-kernels, transactional memory models, and paging vs segmentation should go here. Use this forum to expand and improve the wiki!
User avatar
Demindiro
Member
Member
Posts: 96
Joined: Fri Jun 11, 2021 6:02 am
Libera.chat IRC: demindiro
Location: Belgium
Contact:

Re: Python OS

Post by Demindiro »

devc1 wrote:Python is what makes you need to buy a 10000$ PC to run applications smoothly
There are plenty of applications that do so little processing Python is plenty fast. The ATM example by eekee is a good one, since the heavy stuff such as encryption or updating the UI is implemented in native libraries Python can load. Things like processing input normally takes very little work and can just as well be implemented in an easy to use language.

Usually, the right question to ask w.r.t. performance is not whether if something is fast, it's whether it is fast enough. Then, if the answer to that question is no, identify what is slow and only optimize that. It will save a lot of effort.
My OS is Norost B (website, Github, sourcehut)
My filesystem is NRFS (Github, sourcehut)
Post Reply