This recursive structure is exactly how the Oberon Object Tiler achieves its legendary speed and simplicity. The Oberon Object Tiler is more than a historical footnote. It is a proof that user interfaces do not need to be complex to be powerful. While the mainstream computing world chose overlapping, compositing, and GPU-accelerated effects, the Oberon community chose clarity .
class Tiler: def __init__(self, x, y, w, h): self.x = x; self.y = y; self.w = w; self.h = h self.left = None self.right = None self.orientation = None # 'H' or 'V' def split(self, orientation, ratio): self.orientation = orientation if orientation == 'V': # Vertical split (left/right) split_point = self.w * ratio self.left = Tiler(self.x, self.y, split_point, self.h) self.right = Tiler(self.x + split_point, self.y, self.w - split_point, self.h) else: # Horizontal split (top/bottom) split_point = self.h * ratio self.left = Tiler(self.x, self.y, self.w, split_point) self.right = Tiler(self.x, self.y + split_point, self.w, self.h - split_point) Oberon Object Tiler
In the pantheon of operating systems, few have achieved the cult status of Oberon. Developed at ETH Zurich by Niklaus Wirth and his team, Oberon was more than just an OS—it was a vision for a textually commanded, deeply integrated computing environment. However, buried within its lineage (particularly the System Oberon and the active Object Oberon variants) lies a hidden gem of user interface design: the Oberon Object Tiler . This recursive structure is exactly how the Oberon
Unlike traditional files (Unix) or documents (Macintosh), Oberon treated everything as a persistent, active object. A piece of text, a graphic, a compiler, or a network socket—all were objects. However, buried within its lineage (particularly the System
For the modern user, revisiting the Oberon Tiler is an exercise in cognitive reframing. Try using a tiling window manager (i3, Hyprland, or Sway) for one week. Then, emulate ETH Oberon for a day. You will notice a difference: the Oberon Tiler feels like a piece of furniture, not a parlor trick.
This article dives deep into the architecture, philosophy, and practical resurrection of the Oberon Object Tiler. To understand the "Object Tiler," one must first understand the Oberon System's core unit: The Object .
For modern developers, data scientists, and UI historians, the "Oberon Object Tiler" is not merely a forgotten window manager. It represents a radical, deterministic approach to screen real estate that is seeing a surprising renaissance in the age of tiling window managers (TWMs) and low-code data dashboards.