• lime!@feddit.nu
    link
    fedilink
    arrow-up
    12
    ·
    18 hours ago

    i need more weird ones. haiku, nextstep, inferno, oberon, alto exec, os/2 warp, z/360, vms, maclisp, colorforth…

    • ruuster13@lemmy.zip
      link
      fedilink
      arrow-up
      1
      ·
      11 hours ago

      Don’t forget Buddha Linux… Which still pretty much just exists as a concept. Neither real nor not real.

      • OwOarchist@pawb.social
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        6 hours ago

        I should make a Schrodinger’s Linux.

        Every command you enter has a 50% chance of being ignored, and the output of all commands is hidden and come with a 30s delay, so you never know whether the command was actually executed or not.

        • Myk@kzoo.to
          link
          fedilink
          arrow-up
          2
          ·
          6 hours ago

          @OwOarchist
          With bash. All things are possible.
          alias cat=schrodinger.sh

          #!/usr/bin/env bash set -euo pipefail if (( RANDOM % 2 )); then echo "meow" else command cat "$@" fi