serenity VS nextspace

Compare serenity vs nextspace and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
serenity nextspace
240 18
28,519 1,853
2.8% -
10.0 9.6
7 days ago 1 day ago
C++ Objective-C
BSD 2-clause "Simplified" License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

serenity

Posts with mentions or reviews of serenity. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-09.
  • Why does part of the Windows 98 Setup program look older than the rest?
    5 projects | news.ycombinator.com | 9 Apr 2024
    SerenityOS replicates that look and feel. It is also implemented in a dialect of C++ that adheres to some of the good parts of C++98: https://serenityos.org
  • SerenityOS
    1 project | news.ycombinator.com | 3 Apr 2024
  • XZ: A Microcosm of the interactions in Open Source projects
    7 projects | news.ycombinator.com | 30 Mar 2024
    One example of a useful technique

    https://serenityos.org/ apparently only makes source code available. There are no binary images of the OS to install

    I think Andreas said this functions like a little test -- if you're not willing to build it from source, then you probably wouldn't be a good contributor anyway.

    ---

    Likewise, my shell project provides source tarballs only, right now - https://www.oilshell.org/release/0.21.0/

    It is packaged in a number of places, which I appreciate. That means some other people are willing to do some work.

    And they provide good feedback.

    I would like it to be more widely available, but yeah I definitely see that you need to "gate" peanut gallery feedback a bit, because it takes up a lot of time.

    Of course, it's a tricky balance, because you also want feedback from casual users, to make the project better.

  • Fuzzing Ladybird with tools from Google Project Zero
    2 projects | news.ycombinator.com | 16 Mar 2024
    Indeed, given the existence of `JS::NonnullGCPtr`, `JS::GcPtr` intentionally corresponds to a nullable pointer, so it seems dangerous to convert one to a reference without a null-check.

    That said, a naive code search finds what *may* be more cases of this pattern:

    https://github.com/search?q=repo%3ASerenityOS%2Fserenity+%2F...

    Eg: https://github.com/SerenityOS/serenity/blob/a68b134e6dea5065... -> https://github.com/SerenityOS/serenity/blob/a68b134e6dea5065...

    In some of those search results, it is fine because there is a preceding null-check, and obviously I know nothing about this code other than this naive search result, but perhaps it would be prudent to vet all of them.

  • The Ladybird Browser Project
    8 projects | news.ycombinator.com | 6 Feb 2024
    It is a SerenityOS project. You can find the answer to that question in their primary project's FAQ[1].

    1. https://github.com/SerenityOS/serenity/blob/master/Documenta...

  • Sane C++ Libraries
    7 projects | news.ycombinator.com | 27 Jan 2024
    https://github.com/SerenityOS/serenity

    The best way to write proper exception free C++ is not to use the C++ Standard Library.

  • Serenum: OS from scratch to save computers [video]
    1 project | news.ycombinator.com | 16 Jan 2024
    I initially confused it with Serenity OS prior to watching the video: https://github.com/SerenityOS/serenity
  • Ask HN: What side projects landed you a job?
    62 projects | news.ycombinator.com | 3 Dec 2023
    My contributions to SerenityOS[0] helped me get my current job. My team lead (who was also my interviewer) was interested in what I did since I listed some of it in my CV, and I showed him some PRs I made and explained what went into each of them. It was really exciting because I didn't have professional experience with low-level development, and basically got the job due to hobby programming.

    [0]: https://github.com/SerenityOS/serenity/pulls?q=is%3Apr+autho...

  • SerenityOS ā€“ a love letter to '90s user interfaces with a custom Unix-like core
    1 project | news.ycombinator.com | 30 Nov 2023
  • Bring garbage collected programming languages efficiently to WebAssembly
    16 projects | news.ycombinator.com | 3 Nov 2023
    Definitely not "literally impossible", just a great deal of work. https://github.com/SerenityOS/serenity/tree/master/Ladybird

nextspace

Posts with mentions or reviews of nextspace. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-05.
  • Making a Debian ISO
    2 projects | /r/debian | 5 Apr 2023
    Interesting project. Any link to NEXTSPACE?
  • GNUstep compatibility with macOS Catalina almost complete
    1 project | news.ycombinator.com | 26 Mar 2023
    I'd love to run GNUStep on my Linux machine simply because The NeXT heritage brings with it the only sane keyboard shortcut / keybinding system on the Linux desktop. Before I go on a tangent, let me link to NEXTSPACE [1] which is a CentOS based GNUStep OS. Sadly, since the author is from the Ukraine, all development has halted since last February :( I hope he is ok.

    Now the keybinding tangent: If you're not rolling VIM keybindings in the whole desktop (which is tricky for non-modal interfaces and alienating a large amount of users), the next best ergonomic keybinding scheme is the Emacs / Gnu Readline system [2]. It allows moving the cursor without having to move hands around (e.g. going to the arrow keys, coming back to the alphabetical keys). It is one of the base tenets of unix systems. Every terminal supports it. Yet, the whole bunch of Linux Desktop systems completely ignored these keybindings and copypastaed the Windows concept instead, coming up with a weird chimera of readline in some places, and half-windows, half-self-invented in others.

    Gnome used to have an Emacs compatibility mode that was somehow off by default and had to be enabled in a tweak. It was removed with GTK 4 however. If you want to do that in KDE, you have to run a weird python daemon, and half the apps constantly stop working because they key codes are being messed with.

    MacOS on the other hand, supports these keybindings in every input dialog, it is a pleasure to use. Even more so, to have the same keybindings in every app and not having to learn new ones on a per-app basis.

    Of course, running weird python key code daemons runs into the other problem that macOS & Gnustep solved in a much nicer way: By copying the shortcut system from Windows and patching it on top of Readline, many shortcuts have double entries. Printing is CTRL-P, but so is readline "Previous Line". macOS and Gnustep solve this by having a separate key for app actions: Command (or Hyper or Alt). So print is Command+P. Everywhere. Previous line is CTRL-P. This is always my go-to Linux joke where "Copy" is "CTRl-C" everywhere, except in the Terminal, where it's CTRL-SHIFT-C because yeah, CTRL-C has another meaning. Talk about a sane shortcut system if apps have to use different ones per shortcut because the amalgamation of Windows Shortcuts + Readline is a match made in hell.

    [1]: https://github.com/trunkmaster/nextspace

  • Previous: A NeXT Computer Emulator
    6 projects | news.ycombinator.com | 20 Mar 2023
    In case you want to have a NeXT-like experience on Linux, Iā€™ve had good fun with NEXTSPACE:

    - https://github.com/trunkmaster/nextspace

    Alas, the developer is Ukrainian, and hasnā€™t committed anything in a long while. But maybe someone could help out?

  • Pop _OS Cosmic Desktop to Make Use of Iced Rust Toolkit Rather Than GTK
    2 projects | news.ycombinator.com | 3 Oct 2022
    I described some of my feelings on the matter fairly recently here:

    https://www.theregister.com/2022/05/17/linux_desktop_feature...

    My personal preference, and what I'm writing on right now, is Unity.

    I am also very fond of the ROX Desktop.

    What would I really like to see? Well, barring attempts to just rip up everything and start again for no good reason, I think there would be a lot of mileage in recreating some of the classic UIs of the past that many people have loved.

    * Classic MacOS was a sublime UI, with a lot of subtle non-obvious features. In its way it was far more polished than Mac OS X, even now.

    * OS/2 2.x's Workplace Shell was not one of my personal favourites, but it had some excellent design features, and was loved by many.

    * I have an Amiga but I never was a big fan back in the day, but a good solid modern Amiga Workbench clone would have some mileage, and as I said in the article, there are already FOSS implementations, just not for xNix.

    * GEM is FOSS now. Why not recreate DR's multitasking GEM/X on Linux, or any of the late-era multitasking GEM desktops from the Atari ST, such as Thing or TeraDesk?

    One of my favourite UIs is undergoing a pretty good re-implementation effort, in the form of NeXTspace:

    https://github.com/trunkmaster/nextspace

    There are more than half a dozen non-Windows-like desktop metaphors. Is that enough for you or shall I find some more? :-)

  • Tell HN: Nextspace (NeXTSTEP-like DE) stopped development as author in Ukraine
    1 project | news.ycombinator.com | 6 Jul 2022
    AFAIK, NEXTSPACE is the only NeXTSTEP-like desktop environment that is (was) actively being developed (https://github.com/trunkmaster/nextspace). The author had been working on this project for more than 5 years and he had been pushing code almost every single day.

    Unfortunately, he had to stop development since Russia invasion of Ukraine, as he lives in Kyiv, Ukraine. He said he was OK and would like to continue development "after Ukraineā€™s victory" (https://github.com/trunkmaster/nextspace/discussions/412). But that was about 4 months ago.

    As someone who really likes NeXTSTEP and hopes NEXTSPACE to succeed, the current situation is sad.

    Just wanted to inform the crowds at HN about this.

    :wq

  • Sick of Windows but can't afford a Mac? The cynic's guide to desktop Linux
    1 project | news.ycombinator.com | 31 May 2022
    [Article author here]

    > I think my ideal Linux OS is probably Ubuntu/CentOS + something like macOSā€™s .app bundle file format for distributing end-user applications.

    Then I suggest looking at NeXTspace:

    https://github.com/trunkmaster/nextspace

    It does exactly that. CentOS, plus .app bundles, all integrated into a single bundle.

    But the .app bundles come from GNUstep, so you can't pick your own desktop.

  • I see great gains for minimalist Linux users in this desktop environment, please support this project
    1 project | /r/linux | 13 Dec 2021
  • Nextspace, a desktop environment that brings a NeXTSTEP look and feel to Linux
    1 project | /r/linux_gaming | 13 Dec 2021
    1 project | /r/Boiling_Steam | 13 Dec 2021
  • SerenityOS demo at Handmade Seattle 2021
    4 projects | news.ycombinator.com | 18 Nov 2021

What are some alternatives?

When comparing serenity and nextspace you can also consider the following projects:

Chicago95 - A rendition of everyone's favorite 1995 Microsoft operating system for Linux.

ravynos - A BSD-based OS project that aims to provide source and binary compatibility with macOSĀ® and a similar user experience.

rust-raspberrypi-OS-tutorials - :books: Learn to write an embedded OS in Rust :crab:

lumina - Lumina Desktop Environment

haiku - The Haiku operating system. (Pull requests will be ignored; patches may be sent to https://review.haiku-os.org).

ISO - helloSystem Live and installation ISO

linux - Linux kernel source tree

NsCDE - Modern and functional CDE desktop based on FVWM

reactos - A free Windows-compatible Operating System

linux-apfs-rw - APFS module for linux, with experimental write support

redox - Mirror of https://gitlab.redox-os.org/redox-os/redox

QGnomePlatform - QPlatformTheme for a better Qt application inclusion in GNOME