The Long Life of Open Source Code
Doghouse – Code Longevity
As two examples of how open source code can evolve, maddog discusses the long history of text editors and of the RAND message handling system.
Recently I was discussing with friends how long certain pieces of code have lasted … perhaps not exactly the same piece of code, but a recognizable version of the original that has continued to evolve.
One example of this is the simple text editor.
When I started programming, I used 80-column punched cards and the Fortran language. If you made a mistake, you could stick the bad card into a particular slot on the card punch, duplicate the correct part of the card, and then continue typing to complete the statement. It was horrible, but it was all we had.
The first editor I ever used was on a small mini-computer called the PDP-8. The PDP-8 had 4,000 12-bit words of memory and no storage other than paper tape. The computer had to hold all of the text editor and all of the source code of your program in memory at the same time. You had a paper-driven terminal called the ASR-33 Teletype, and the rolls of paper were expensive, so the text editor tended to print as little as possible. It was a modal editor, which meant that you were either inputting part of your program in input mode or giving editing commands to the program in command mode.
It was also what we called a "dot editor," since an invisible dot controlled where you were inputting data or from where the command was being given.
As an example, a command to print from the beginning of the line to where the dot was would be 0t.
and from where the dot was to the end of the line would be .t$
. The command 0t$
would type the entire line.
You could also move the dot without the editor typing any output, and there were dozens of other commands for deleting characters, lines, and even blocks of characters.
This simple dot editor was called e
. As more commands were added and it moved to early Unix, it became known as ed
. Today this editor, like a lot of other Unix commands, might be called "user-unfriendly," but to people used to cards, it was great.
As memory sizes in computers grew, both the editor program and the text that it was manipulating could get larger. The editor's name was eventually changed to em
, and then it was introduced to Bill Joy at the University of California, Berkeley. He improved it, and it became ex
, which could be used for both hard copy terminals and "those new-fangled character-cell video terminals" in command-line mode.
Eventually Bill Joy wrote a full-screen text editor called vi
that still had the modal commands of ex
, and vi
became one of the mainstream Unix editors for a long time.
The other mainstream editor was, of course, emacs
, and these two editors created one of the longest running cyberwars of all time – the arguments of which are best left to another place and time over beer and pizza.
Eventually the functionality of vi
was cloned into vim
, allowing me to use (more or less) the same text editor for close to 50 years.
Yes, I know that somewhere emacs
people are screaming, but I like vim
.
Another fine example of a long-lived program is the RAND MH message handling system.
MH was really a series of command-line tools that created a front end for importing and reading email in the early days of Unix. It used the filesystem to hold all the email, so its "database" was very readable and could be manipulated with other Unix commands. I loved using MH.
Eventually email started including non-character data such as graphics and music. Since Unix at that time used 7-bit ASCII characters, an extension was needed to be able to encode the binary data into 7-bit data bytes, and this was called MIME. MH was then extended to handle MIME, and cat pictures began to flourish. On the command line, mh
became nmh
(new MH).
Eventually windowing came to Unix in the form of the X Window System, and a sort of "graphical shell" was made over nmh
called exmh
. Later still, Motif (another set of graphical widgets) was added to become another extension of the venerable MH system.
Since MH was first released in 1978 (and I first used it in 1983), it has gone through many incremental upgrades with the last release of the base nmh
being in 2018.
Do not think of MH as dead, however, for the sources are still there for people to pick it up and keep improving.
This is the point of this entire article: Free and Open Source invites extensions of good functionality to meet changing needs, and often the code that you think may be dead is only resting somewhere waiting for the next person to look at it and update it again.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.