←back to thread

408 points ksec | 4 comments | | HN request time: 0.734s | source
Show context
monax ◴[] No.45229746[source]
Didn’t expect to see my project on the main page today ‘^^ Right now the build is broken, so you can’t test the full OS, but you can run individual apps with:

```bash ./skift.sh run --release <app-name> ```

on Linux or macOS.

To see all available apps:

```bash ls ./src/apps ```

replies(6): >>45229766 #>>45229782 #>>45230072 #>>45231061 #>>45231293 #>>45232427 #
1. pjmlp ◴[] No.45229782[source]
Kudos for exploring other avenues outside UNIX.
replies(1): >>45229796 #
2. monax ◴[] No.45229796[source]
Thanks! Skift is basically a patchwork of all the OS ideas I like. The UI takes inspiration from SwiftUI/Flutter, the microkernel is influenced by Zircon, and there are some Plan 9 ideas where everything is a URL. A few bits are probably inspired by NT and Darwin too, though I don’t remember exactly which.
replies(2): >>45230812 #>>45230863 #
3. keyle ◴[] No.45230812[source]
Sounds like really solid ideas. You must have a lot of experience to inspire yourself from so many diverse niche worlds. GL!
4. pjmlp ◴[] No.45230863[source]
Maybe adding some Xerox PARC, Oberon, NeXTSTEP / NeWS style, Powershell ideas could also be interesting, on how the shell, UI, and dynamically loaded code (or OS IPC), makes the whole OS customizable, , just throwing another set of ideas into your bucket.

Overall it looks interesting, all the best.