<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: DVRC</title><link>https://news.ycombinator.com/user?id=DVRC</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 13 May 2026 15:22:23 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=DVRC" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by DVRC in "Screenshots of Old Desktop OSes"]]></title><description><![CDATA[
<p>He also got Parallax p/NeWS in his collection, which is super rare. I also wrote a person who has a SunDew QIC cassette, and another that has various NeWS sources (including the portable REF tree of the 1.1 version). Unfortunately they haven't released them yet, because of the unknown copyright situation.
Another person has the OpenWindows 1.0 binary tapes for Sun-3 and Sun-4, among other stuff.<p><a href="https://github.com/larsbrinkhoff/bagley-nottingham-tapes" rel="nofollow">https://github.com/larsbrinkhoff/bagley-nottingham-tapes</a><p>For now we have the sources of NeWS 1.1 (and operators.h if you look more in depth) and X/NeWS 2.0. I also have the RBuss sources (an incomplete clone), but I have to ask the author if they can be put on the internet.<p>P.S: check BitSavers and Don Hopkins archives...</p>
]]></description><pubDate>Tue, 12 May 2026 11:34:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48106788</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=48106788</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48106788</guid></item><item><title><![CDATA[New comment by DVRC in "Screenshots of Old Desktop OSes"]]></title><description><![CDATA[
<p>Over time much NeWS related stuff resurfaced, wheter are application binaries, sources (both application and the server itself) or documentation, so anyone could play with them on a real machine (Sun-3 or SPARC) or inside QEMU SPARC.
I'm waiting for a copy of "Portable NeWS 1.0" to be recovered, to see how much different the sources are compared to the 1.1 version.<p>I also hope to see resurface binaries/sources of other server implementations, Sun Symbolic Programming Environment (which includes code originally developed at Schlumberger, including LispScript), the sources of the PdB compiler, CMU Andrew wm (although is not directly related, is the ancestor of this window system, from the same authors), and whatever is related to this system.<p>It would be interesting a revival like Interlisp.</p>
]]></description><pubDate>Tue, 12 May 2026 11:08:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48106592</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=48106592</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48106592</guid></item><item><title><![CDATA[New comment by DVRC in "Screenshots of Old Desktop OSes"]]></title><description><![CDATA[
<p>The man behind this site is known for his skills of recoverying data from QIC tapes.
Looking at the "Software Library" section makes me always wonder if it will be released at some point, since that there is some stuff that isn't on BitSavers or other sites.</p>
]]></description><pubDate>Tue, 12 May 2026 10:40:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48106391</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=48106391</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48106391</guid></item><item><title><![CDATA[New comment by DVRC in "I hate: Programming Wayland applications"]]></title><description><![CDATA[
<p>I'd like to see some code to understand what it takes to write a functioning Wayland application, a bit like David Rosenthal did in his paper "A Simple X11 Client Program -or- How hard can it really be to write ‘Hello, World’?" (USENIX 1988 Winter Proceedings).<p>Anyway, if I was persuaded that Wayland has a rather backwards design (here my reasons: <a href="https://news.ycombinator.com/item?id=47477083">https://news.ycombinator.com/item?id=47477083</a>), now I have the confirmation that its philosophy is something like "put surfaces on the screen and distribute events to the clients, all the other stuff is not my business", and that exploring alternative approaches to window management is still worth it.
Having applications that manage all their resources (canvases, events, decorations) is not bad per se (for example video games), but not all of them need to.</p>
]]></description><pubDate>Mon, 23 Mar 2026 12:52:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47488805</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=47488805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47488805</guid></item><item><title><![CDATA[New comment by DVRC in "Separating the Wayland compositor and window manager"]]></title><description><![CDATA[
<p>So far this is one of the most interesting approaches to Wayland compositor implementation.
I always felt that the "monolithic design" (compositor + window manager) is a step backwards, and that many compositors neglected features like server side decorations (which make easier to have a consistent look & feel).<p>The NeWS book at page 35 has a picture explaining the structure of the CMU Andrew Window System: the window manager on top of the "base window system" (assuming protocol and logic), which sat on the graphic library, and applications connected to it through sockets.
A limit was that the window manager was fixed, so you couldn't change its policy/look and feel without having the sources and recompiling it (and here I wish the source code was available).<p>Wayland it's kinda similar, but most of the graphic layer is moved from the server into each application (where each one use its own).
Unless you have a compositor that is designed to be extensible out of the box, a set of widgets will be needed if you don't ship a desktop environment, and each one is a separate system process (for example: toolbar, clipboard manager, status bar, wallpaper).
Another limitation is its "static" protocol, in the sense that you cannot extend the compositor at runtime loading extensions (you have the XML which is used to generate the stubs for the implementation in the compositor AFAIK). This can prevent applications that use them to run on compositors that don't implement them.<p>On the other hand, systems like NeWS, GMW (a window system from Kyoto University, ASTEC and Omron) and the one described by Rob Pike in "A concurrent window system" are interesting for these reasons:<p>- runtime extension loading code: new functionalities to the server can be added when needed<p>- code as a protocol: instead of sending "raw data" and requests, equivalent pieces of code are sent, allowing for compression and to offload a portion of the logic to the server (or even have applications that run inside the server). This can also allow to have applications that run on remote machines, which download the code for the interface to the server.<p>- concurrency: their programming model is structured around "lightweight processes" (or equivalent), which allow to decompose the interaction in independent tasks, which can eventually interact by sending messages/events or sharing resources.<p>I think it's worth re-investigating this kind of design, considering also the technological advancement (like the evolution of graphic hardware, multicore CPUs, touchscreens, ecc) and challenges (including security).
It would be interesting something like NeWS but a bit more abstract and capable of supporting whatever graphic model you wish.</p>
]]></description><pubDate>Sun, 22 Mar 2026 13:02:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47477083</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=47477083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47477083</guid></item><item><title><![CDATA[New comment by DVRC in "GUIs are built at least 2.5 times"]]></title><description><![CDATA[
<p><a href="https://bsky.app/profile/dvrc.bsky.social/post/3lchv6gf5u22e" rel="nofollow">https://bsky.app/profile/dvrc.bsky.social/post/3lchv6gf5u22e</a><p>These are some screenshots of NeWS 1.1 running on SunOS 4.1.4 on QEMU that I took time ago.
Unfortunately QEMU SPARC decided to break again. Also, keyboard doesn't work yet (forcing me to use the SunView terminal emulator), but probably it's due to the keyboard script.<p>In any case, SunOS 4.1.4 comes with OpenWindows out of the box.</p>
]]></description><pubDate>Sat, 07 Jun 2025 21:01:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=44212642</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=44212642</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44212642</guid></item><item><title><![CDATA[New comment by DVRC in "My Favorite C++ Pattern: X Macros (2023)"]]></title><description><![CDATA[
<p>> Does it build today
In this form it won't, since that is missing the Sun PixRect library. And you also need the "operators.h" 
file (which is in another directory...) and the "acceptconnect" function.<p>On comp.windows.news Usenet group and on the NeWS book is reported that a portable codebase (called REF) exists, and Sun ported it on Ultrix (on thr VAXstation) and System V. I read it included a version of PixRect called "Generic PixRect", which should be more portable.<p>BitSavers put on the net a tape dump of X/NeWS 2.0, and there are some differences: a different graphics library called SHAPES replacing CScript (and it needs the Ace preprocessor to build the device dependent portion of the library), a different memory allocator, support for X11 protocol, support for Folio F3 fonts, and other things.<p>Fortunately I found a copy of PixRect in the leaked sources of SunOS 4.1.4 , but it's not enough, since that device dependent routines must be rewritten.<p>I'm slowly porting NeWS 1.1 to NetBSD (since that wscons is easier to work with) as a proof of concept. I managed to execute code and grt my screen turn blue, but the current obstacle is decoding binary fonts: the OG routines fail completely on 64 bit machines, since that the original format assumes 32 bit machine words and big endian order. More work will be needed.</p>
]]></description><pubDate>Sat, 05 Apr 2025 16:12:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=43594513</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=43594513</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43594513</guid></item><item><title><![CDATA[New comment by DVRC in "Brave Browser introduces vertical tabs"]]></title><description><![CDATA[
<p>Do any version of UniPress Emacs (that support the NeWS driver) or NeMacs survive?</p>
]]></description><pubDate>Sat, 03 Jun 2023 17:24:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=36178581</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=36178581</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36178581</guid></item><item><title><![CDATA[New comment by DVRC in "Graphical Unix has always had desktop environments"]]></title><description><![CDATA[
<p>PS: there's a paper in english on IEEE Xplore.
<a href="https://ieeexplore.ieee.org/document/4814" rel="nofollow">https://ieeexplore.ieee.org/document/4814</a></p>
]]></description><pubDate>Mon, 22 May 2023 10:22:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=36029499</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=36029499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36029499</guid></item><item><title><![CDATA[New comment by DVRC in "Graphical Unix has always had desktop environments"]]></title><description><![CDATA[
<p>Weeks ago, while I was searching for NeWS related papers/material, I stumbled upon some japanese papers about a window system called GMW (Give More Windows).<p>It is pretty much obscure, and all I found is that was made at Kyoto University (who also made Kyoto Common LISP), and it used a virtual machine.<p>Unfortunately the papers are o ly in japanese.
- <a href="https://ir.library.osaka-u.ac.jp/repo/ouka/all/65804/oksn_071_045.pdf" rel="nofollow">https://ir.library.osaka-u.ac.jp/repo/ouka/all/65804/oksn_07...</a>
- <a href="https://ja.m.wikipedia.org/wiki/GMW" rel="nofollow">https://ja.m.wikipedia.org/wiki/GMW</a>
- <a href="https://ipsj.ixsq.nii.ac.jp/ej/?action=pages_view_main&active_action=repository_view_main_item_detail&item_id=31148&item_no=1&page_id=13&block_id=8" rel="nofollow">https://ipsj.ixsq.nii.ac.jp/ej/?action=pages_view_main&activ...</a></p>
]]></description><pubDate>Mon, 22 May 2023 10:06:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=36029378</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=36029378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36029378</guid></item><item><title><![CDATA[New comment by DVRC in "NeXT Computers"]]></title><description><![CDATA[
<p>NeWS wasn't based on DPS. It's a full display server based on the PostScript Red Book with some extensions (canvases, lightweight processes and sync primitives, events, classes, garbage collection). This allows to write applications in this extended PostScript or in other programming languages, using a preprocessor, such as cps for C or lps for Scheme-48 and Allegro LISP, that generates PS snippets that get sent to the server.</p>
]]></description><pubDate>Thu, 11 May 2023 22:12:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=35909073</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=35909073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35909073</guid></item><item><title><![CDATA[New comment by DVRC in "Running SunOS 4 in QEMU (Sparc)"]]></title><description><![CDATA[
<p>Yes, it comes in bundle with SunOS, since that one part of it it's implemented in the kernel IIRC.
I've also been able to run NeWS 1.1 (which was before the X/NeWS merg) inside QEMU, although the keyboard input is not working (and for some reason the patch to add the Sun Type 4 breaks everything).</p>
]]></description><pubDate>Sun, 23 Apr 2023 09:24:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=35674704</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=35674704</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35674704</guid></item><item><title><![CDATA[Fresco, KGI and GGI]]></title><description><![CDATA[
<p>Since I heard of the X11 vs Wayland debate I wondered if on *NIX and Linux other
window systems/protocols existed.
From there I read about Sun NeWS, Bellcore MGR, Bell Labs rio (preceded by mpx
and mux on the Blit, and 8½), SunView and HP Windows/9000 (this last one is
rather obscure).<p>Today I stubled upon a rather obscure window system that was being developed on
Linux between 1999 and 2003: Fresco.
As far as I've seen it was written in C++ and leveraged CORBA and GGI.<p>If any of you got the opportunity to try it back in the day, could you describe
how it was?<p>I also stumbled upon these two related projects: KGI and GGI, which dealed with
graphic acceleration, drivers, input and rendering.<p>Whatever happened to all these projects? Did they failed to meet their goals?<p>Links:
- https://web.archive.org/web/20061123090303/http://www.fresco.org/index.html
- https://github.com/stefanseefeld/fresco
- http://www.ibiblio.org/ggicore/links.html#games
- http://www.ibiblio.org/ggicore/index.html
- http://www.kgi-project.org/index.html</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=34236515">https://news.ycombinator.com/item?id=34236515</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 03 Jan 2023 19:17:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=34236515</link><dc:creator>DVRC</dc:creator><comments>https://news.ycombinator.com/item?id=34236515</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34236515</guid></item></channel></rss>