vote up 15 vote down star
12

What's the most exotic, coolest, unique, or interesting machine you've worked on? Most of us work on machines with x86 architectures using some Windows or Linux variant. I'm sure there are those of you out there who are working on or have worked on machines with experimental architecures, or operating systems. Maybe you worked on a machine that has some sigificance in the history of computing. I'd be interested to hear about it. I'm sure others reading SO will as well.


EDIT: I appreciate all of you who took some time to talk about their experiences with interesting or unusual machines. I enjoyed reading your answers. Although it wasn't my intent to get nostalgic, I see that theme amongst the responses.

flag
show 8 more comments

71 Answers

1 2 3 next
vote up 4 vote down

Xbox360 and Nintendo DS.

I wonder if anyone from JPL or Lockheed-Martin browses StackOverflow...

link|flag
show 3 more comments
vote up 1 vote down

Imlac PDS-1 .. from the days when you had to toggle in the boot loader by hand. My first "personal computer". It had 2 processors - a regular CPU and a vector display processor - which was a novel design for it's time. And a Lightpen!

Mazewar and Spacewar were never so much fun !

link|flag
vote up 10 vote down

Hands down (for me), the Cray Y-MP. Developing and testing Reservoir Simulators in the 80's (FORTRAN), unix operating system (but timeshare for the users).

Runners up (all in the 80's as well): Apollo Domain systems (sort of an early Unix cluster). Also the HP 9000 (one of the faster minicomputers in it's day. Perkin-Elmer (one of the fastest executing FORTRAN compilers of it's time). Honeywell Multix (again, reservoir simulators and other Chemical Engineering programs in FORTRAN).

-R

link|flag
show 1 more comment
vote up 27 vote down

IBM System z

IBM System/360IBM System z10

Actually, the current machines we work on are the most exotic - they're the IBM System z mainframes. And, before you laugh about dead technology, consider that the hardware has come a long way in the last 40 years. It started in 1964 as System/360 (of Mythical Man Month fame), evolved into the 'zSeries', and finally became the System z of today.

Think of a machine with many 'books' of CPUs, each able to hold 56 CPUs (taskable to primary or automatic hot switching backup use) and all I/O offloaded to dedicated processors using fiber optic channels.

The 'z' in System z stands for zero down-time and this is easily achieved by moving work between virtual machines or partitions.

Also able to run Java workloads with the specialized zAAP CPUs and database-intensive work with equally specialized zIIP CPUs, has its own UNIX subsystem (although it's EBCDIC under the covers - ugh).

It can run zLinux (SLES or RHEL) as well - we've had our relatively puny machine (a z800 used for development and testing) running tens of tousands of instances of zLinux concurrently under the control of zVM - that's a big plus in terms of energy usage.

The current crop of 'dinosaurs' that administer z/OS still prefer ISPF (a green screen user interface) but IBM has produced management and health-checking tools using web servers which make the interface a lot less painful for current graduates.

IBM also have many initiatives to train people up in these systems - they realize that most of the current crop of programmers and sysprogs are all approaching retirement age and that's going to leave a void for anyone smart enough to enter the field.

link|flag
show 8 more comments
vote up 17 vote down

Sinclair ZX Spectrum 48K

It just had that "New Alien Tech" smell that made a bunch of sleepless nights.

link|flag
show 4 more comments
vote up 10 vote down

I once programmed integral functions on an analog computer, which mostly involved plugging wires in to sockets and adjusting input gains and watching oscilloscopes draw lissajou figures. It was very cool.

link|flag
vote up 11 vote down

Connection Machine

In the late 90s I had access to a Thinking Machines Connection Machine: 128x128 processors in a torus network, each roughly equivalent in processing power to a 386. Easiest parallel computation architecture I've ever worked with and it was just downright fun to play with. I was cranking out radiosity solutions in seconds that took hours on the hardware of the time.

alt text

link|flag
show 1 more comment
vote up 0 vote down

Encore Multimax, 32-processor, shared memory architecture running a variant of UNIX. This used NS32032 processors.

Alliant FX/2800, 16-processor, distributed memory architecture also running a variant of UNIX. I believe this used Intel I960 processors.

HP N-series, 8 processor, distributed memory architecture running HP-Ux on PA-RISC 8500.

All of these systems were used for engineering applications, primarily real-time simulation of mechanical systems and finite element analysis.

link|flag
vote up 3 vote down

Not the coolest, but certainly interesting. In the late 80s I worked on the LEC 16 (a mini made by Lockheed), also called the MAC 16. I was working in the middle-east on air traffic control systems and these dumb-asses had been sold this system (last time it was used in the States was in early 70s). The system had core memory! (4k words per 16" * 16" board). The boot 'ROM'' was a 16" * 16" board with 4096 bits whose value was determined by individual diodes (there or not there). To get it to do anything you had to load a boot-loader through the front panel (like the Altair 8080), although it was easy enough to coax it to load a paper tape from a teletype. Storage consisted of usual IBM style tape drives and a mad fixed/removable disk (two platters, one removable 2.somerthing MB on the fixed platter, 1.something MB on the removable). Even in the 80s this was pile of obsolete crud. The main unit (excluding storage) was a 6 foot high steel cabinet. Mad!

For any history buffs out there here is the only thing I could find : http://www.computerhistory.org/brochures/companies.php?alpha=j-l&company=com-42c1686f07480

By the way, the coolest computer I ever had, the Atari 520 when it was launched!

link|flag
vote up 21 vote down

That should be the fridge. It's pretty cool in there.

link|flag
show 6 more comments
vote up 14 vote down

AS/400, later renamed to iSeries, then System i. I haven't actually worked on one, but I have sat in front of one and typed commands into the terminal.

It's a brilliant architecture that is still very much alive. IBM is putting out new models every year (although the line has now been merged with what was once called the RS/6000 (later called the pSeries)) and is still selling quite a few of them.

One thing I like about it is that it challenges many "conventional" assumptions about computers. For example, a lot of programmers say that one must learn C in order to understand how computers work. However, the AS/400 actually is pretty much the opposite of what you would learn through C. The basic abstractions of C are pointers, files, processes and unstructured bytestreams. The AS/400's operating system (OS/400) doesn't have any of that: it doesn't have pointers, it has something called "files", but those have no resemblance to C files, they are more like SQL rows, also it has logical files which are like SQL views and a lot of other kinds of files like display files (basically GUIs), device files and so on. It has jobs, which are a kind of process abstraction, but it doesn't have seperate address spaces. And all files are structured and strongly typed, like PASCAL records, unlike C unstructured untyped bytestreams.

In fact, not even the CPU has pointers! It uses tags, which are more like object references in a memory-managed VM than C pointers.

Instead of a file system, the OS/400 has a relational database engine embedded at its core. IBM calls it DB2/400 but it doesn't actually share any code or technology with IBMs DB2 product.

The execution model is based on an abstract machine, called the Technology Independent Machine Interface (TIMI). Programs are delivered as MI bytecode and compiled to native object code when they are first executed. The compiler is a privileged system service that can only be called by the kernel; that way the compiler can be trusted and a lot of the security checks that more conventional systems are doing at runtime (usually in hardware, such as memory protection in the MMU or privilege domains in the CPU) can be done at compile time, thus eliminating runtime overhead. (Microsoft Singularity is an Operating System built along similar ideas and they measured a slowdown of more than 30% when going from compiler security to hardware security. Think about that: your PC could be 30% faster (or cheaper, or cooler) if only your operating system were not written in C!)

Originally, the kernel was implemented in Modula-2, with the rest of the OS implemented in PL/MI (a variant of PL/I that compiles to MI bytecode). It has since been rewritten in a more conventional language, mainly because the OS/400 team at IBM where the only people in the world still needing a Modula-2 compiler and they got tired of maintaining both an operating system and a compiler.

link|flag
show 6 more comments
vote up 10 vote down

My first job was programming CNC punch pressess. Very similar to moisture vaporators. In most respects.

link|flag
show 2 more comments
vote up 5 vote down

Digital pdp-11 RSX.

One of the first projects I ever worked on was automating a warehouse.

This had little robot trucks carrying stock around under the direction of a pdp-11 programmed in the (awful) CORAL language.

It was just totally kool to see these trucks shuffling around the aisles under the direction of this tiny eight bit computer.

link|flag
vote up 4 vote down

I though Wirth's Ceres-3 was pretty cool. It was built as a student workstation around 1990 at ETH Zurich and ran the Oberon operating system which in turn was written in Oberon. It had no hard disk, but it had a floppy drive and network acceess.

Small Picture of a Ceres-3 Workstation

The computer was ready to use instantly since all it had to do was load the OS from ROM, and split it's 8 MB of RAM between RAM Disk (4MB) and Heap/Stack (4MB). The OS included the compiler and basic tools. More was available via the network.

I found it fun to program on and delightfully unconventional.

The last paragraph of this page about the earlier Lilith workstation discusses the Ceres-3.

link|flag
vote up 1 vote down
  • TX-0 (the first machine with magnetic core memory) Coded up a light-pen scribble program.
  • Raytheon RDS-500. The JSX * instruction could be made to do co-routines.
  • Greenblatt-Knight Lisp machines, chess machine.
  • Intel 8008, on a homemade circuit board, playing a tune on a speaker.
  • the Imlac PDS-1, that Scott mentioned.
link|flag
vote up 3 vote down

Current I program industrial robots. These are fun as I get to work in many different domains. The robots are used in so many different industries.

One of my favorites however was an old Martin Marieta 1200 ATE set. We used them in testing Avionics equipment. The programs were loaded from magnetic tape and you have to hand key the boot strap for the tape loader. The electronics were wire wrapped circuit cards. To achieve the repeatability we needed for voltage measurement (micro volt range) the room had to be keep at 68 degrees plus or minus 1 degree. Quite a trick in Miami during the summer.

link|flag
vote up 0 vote down

HP Newbrain...

some weird machine :)

link|flag
vote up 7 vote down

ZX Spectrum

Sinclair ZX Spectrum

The first machine I got my hands on, was in year 1995, a Sinclair ZX Spectrum. I was just 10 years old and had started my tryst with code.

Tell you, you can't even imagine how HAPPY :) I was, to own a 'PC' (if you may call it) which

  • Had BASIC interpreter only with a 128K RAM (mentioned in RED bold letters on its body)
  • Used a Mono cassete tape for storing data
  • Used a TV screen for Console Output

But, it was good enough for anyone who has to start learning programming I did and grew along as the PCs around me did too.

First computer is like your first love. You can't just forget it.

link|flag
1  
Yep. Plus one for this. 128K was luxury. Don't know what you're talking about "only" 128k. – jamesh Nov 24 '08 at 18:26
show 5 more comments
vote up 7 vote down

For me, it was a SGI O2 box in 1995. All purple and toaster-looking. I did image analysis on it for a uni project - video in from a camera, processed it, located an object and sent the location to a delphi app on a PC.

Lots of fun. Nothing else like it at all at the time.

link|flag
show 2 more comments
vote up 8 vote down

On my first job as a professional programmer in 1980, I did software and system support for a network of 6 Xerox Alto computers that were used to publish Dissertation Abstracts. For those not familiar with the Alto, it was created by Xerox Parc and it was the first computer with a bit-mapped monitor and a mouse, among many innovations. The Altos were connected to a 3 MHz Ethernet, yes 3 MHz. Four of the Altos were workstations. One was a fileserver, and the last was a printserver. Every Alto had a removable 2.5 MB drive that was the size of a garbage can lid. The fileserver also had an 80 MB drive. The publishing application was written in BCPL.

In the evening and on the weekends, I could connect to the Xerox network via modem to download updates and participate in the Xerox Alto community. I made one pilgrimage to Xerox Parc. While I was there, I met a young programmer who was sitting in his empty office waiting for furniture and computer to arrive. His name was Charles Simonyi.

Here is a link to the Wikipedia page on the Xerox Alto.

link|flag
show 1 more comment
vote up 1 vote down
  • SPARCstation 20
  • Sinclair ZX81
  • Robotron KC85/1
  • some Convex machine (vector processor)
  • DECstation 3000
  • microVAX
link|flag
vote up 1 vote down

My iPhone.

link|flag
show 2 more comments
vote up 0 vote down

Psion EPOC-16 on the Series 3 range and the HC.

Pure small model code, pre-emptively multi-tasking, with a very efficient library in ROM with much of the C standard library functionality.

It rarely crashed, the OS was rock-solid, and the SDK very mature and powerful.

link|flag
vote up 0 vote down

Not quite a "directly programmed" type system, but an internship I had one summer was with a company called Tandem (bought out by Compaq, then bought up by HP 8^D) that ran a Non-Stop Kernel and powered a bunch of ATM machines and the like. They had their own OS and everything to run it. My project involved porting an emulator they for debugging/troubleshooting purposes from Solaris to NT. So while I didn't get to work directly ON the hardware, I learned OODLES that summer about some really interesting low level stuff.

link|flag
vote up 7 vote down

I had a NeXT machine in my office in 1992. I thought it was the coolest thing I'd ever seen. Prior to that, I'd used Unix and Macs. It was great to have the best of both in one box. In many ways, it really was ahead of its time.

link|flag
show 1 more comment
vote up 2 vote down

Multics, where the unix folks learned about OS's. ;)

link|flag
vote up 0 vote down

I remember NeXTStep running NeXT when I was in college. It was full color and I was blown away with its hefty requirements -32 MB of RAM where most computers only needed 2 or 4 MB RAM.

Also, I remember Windows NT 3.51 running on IBM PowerPC. It was the first time I ever saw a Win3.1 interface showing full content window dragging and it was extremely smooth. It wasn't possible on Intel machines at that time.

link|flag
vote up 16 vote down

I have to say the Commodore Amiga.

It was a machine with a hardware platform and Operating System that, IMHO, was years ahead of it's time. And I also freely admit that nostalgia plays a big part in it! :)

link|flag
show 3 more comments
vote up 2 vote down

My first programming experience was on a Commodore64, in Simons' BASIC... was developing games and demos... good memories... :)

Next, it was GWBasic/QBasic on a 286, after that, Turbo Pascal on a 386...

and so on... :)

link|flag
vote up 3 vote down

The coolest computer I have used was a NextCube in ~1990. The NextCube had Display Postscript, Objective-C, the first object oriented IDE I had seen with WYSIWYG forms editing, real lightweight threads, a huge 256MB rewritable optical disk and a lot more. I paid for the NextCube out of my own pocket (they were not cheap) and even though Next Inc. went out of business, it was an excellent investment thanks to the things I learned - things like working with lightweight threads which is certainly valuable experience to have in today's world of multi-core processors.

Those who do not remember the NextCube might have heard of the successor to the Next OS - Mac OS X.

Having said that, no computer ever seemed as cool at the time as my first Atari 800 - purchased to play games - but I quickly learned that programming was more fun / challenging / rewarding.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.