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 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 21 vote down

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

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

IBM Blue Gene/L, Blue Gene/P

By far the coolest machines I work on are the IBM Blue Gene Series.

In addition to some smaller installations, I've worked on the Blue Gene/L system at Lawrence Livermore, which was the top supercomputer from November 2004 (when it had 32,768 cores and ran at 70 teraflops) to November 2007 (212,992 cores, 478 teraflops).

Blue Gene/L at Lawrence Livermore National Laboratory

These machines are dedicated to big, compute-intensive scientific simulations. The node architecture is a custom SOC with dual PowerPC 440 cores. The 440's have good floating point performance (using a double FPU) and very low power (they only run at 700Mhz). When it first came out, the Blue Gene/L machine had 10-100x more performance per watt than the competition.

To scale to very large core counts, there are also controllers for several networks on the SOC:

  1. 3D torus network for high-bandwidth point-to-point communication. Each node has 6 neighbors on the torus, with packets routed adaptively around congestion along shortest manhattan paths.
  2. Collective tree network for I/O and global operations (e.g. summations and other reductions) with integrated computation logic in the tree.
  3. Fast barrier network that sits alongside the tree network (for global synchronization).
  4. Gigabit ethernet links are attached to specialized I/O nodes embedded in the tree network. I/O nodes mount a parallel filesystem over the gigabit links and handle I/O system calls from the compute nodes via RPC over the tree network.

Compute nodes run a minimal POSIX-like kernel, and the I/O nodes run full-fledged Linux.

I also work on the Intrepid Blue Gene/P system at Argonne. It's got quad-core 850Mhz PPC 450's, faster (but similarly structured) networks, a more fully-featured compute-node OS, and more power efficiency.

link|flag
show 2 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 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 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 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 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 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 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 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 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 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 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 6 vote down

As a student in the 80s I knew the usual home computers or personal computers: Apple II, Commodore PET and others. At the university as a young student life started hard. In the introductory course all the students had to use a huge DEC 10 running TOPS 10 via a printer terminal. A printer terminal is a keyboard with a printer. No screen. You type and the printer prints what you type. The answer is also printed. That generated a lot of printed paper. One learned to type carefully. Editing was done with a line editor. No screen means that there was no screen editor.

I had some course and heard about things like functional programming and object-oriented programming. But the machines I had access to were kind of old. There was a VAX 11/780 but we didn't have access. I read the article in the Byte in 1984 (IIRC] with Smalltalk 80. I was shocked. Object-oriented OS, window system, mouse, etc. Everything was perfect. Only one problem: there was no such machine in my town, at my University. But in the courses machines like the Smalltalk systems from Xerox were mentioned as personal workstations with a new class of software. Software got explained. I was frustrated.

Then one day an AI project which was located in some other part of the town looked for two students to help them with some basic software work. I had no idea what they did and who was working there. I read that it was a government founded research project into natural language processing. Remember, we are in the mid 80s.

With a friend I went there. I walked into the old (but nice) building. Inside was a lab which had several (!) Xerox Lisp Machines (!), Xerox Laser printer (!) and the necessary software for those (including the Xerox Office software and InterLisp-D).

But my friend and I had to work on a different machine: a huge Symbolics 3600 Lisp Machine - I heard this was the first one in Europe. There it was, the hundred thousand dollar personal Lisp workstation with megapixel screen, mouse, Ethernet, hard disk, tape drive. So this student work catapulted me from a printer terminal attached to a time-sharing system to the Lisp Machine. The Xerox machines (and also the DEC 10 where another Lisp was running) were too small for the software that got developed. So they looked to port it to the Symbolics machine, because it had a larger address space (it was a 36 bit machine with lots of virtual memory and about 16 MB RAM).

The Symbolics 3600 was plenty cool. Memorable is for example that it is the size of a large refrigerator, sucked lots of electricity (like 5 kilowatt for a 'personal computer'), had plenty slots, a Motorola 68000 processor to drive I/O and it had a small LED display on the front.

When you turn on the Symbolics 3600, the front display says: "Yes, master". Symbolics 3600

(I also used the VAX 11/780, which I also like a lot. I learned assembler programming on the VAX and Pascal).

link|flag
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

Xbox360 and Nintendo DS.

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

link|flag
show 3 more comments
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 4 vote down

A 100% working replica of the Enigma

link|flag
1  
vacuum tubes? en.wikipedia.org/wiki/Enigma_machine – Chris Mar 2 at 6:43
show 1 more comment
vote up 4 vote down

The iPod.

alt text

It was my first experience in embedded programming, and working with iPodLinux was/is a great experience. Developing ipodmame was my first real project with iPodLinux, and I learned a lot about what it means to develop on embedded archs. No floating point unit, no real memory manager, ARM arch, etc. There are a lot of limitations on what you can do, but with clever programming, you can do pretty much anything a normal workstation can do.

Alex

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 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 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
vote up 3 vote down

It's a tossup between the Tektronix 4051 desktop graphics microcomputer and the HP 250 mini.

The Tek was an astounding piece of hardware for 1978. It used Tektronix's bizarre storage-tube graphics technology, which was kind of like a plotter that used electrons instead of ink. It had a built in BASIC interpreter for programming, something like 64K of memory, and, for virtual memory, a streaming-tape-cartridge drive. Yes, not only were programs broken up into segments that you could load dynamically into the shared buffer, they were loaded off of tape. This made UI design a challenge.

It also had programmable function keys (and plastic overlays that you could label your program functions on!) and, for coordinate input, X and Y thumbwheels that positioned the crosshairs on the screen wherever you wanted. It was immensely heavy and immensely expensive. I think when we finally were able to replace the tape drive with an external floppy disk drive (and man, was that an improvement), the price tag was around 10 grand.

The HP 250 was something else entirely. It was a small-office minicomputer system that could support up to five users (barely), four of them using custom HP 250 terminals, and the fifth seated at the big white plastic desk of the administrator's console. The main console was an elegant thing that may or may not have ever won any European design awards, but that was sure the look they were shooting for.

The terminals all featured a row of eight programmable function keys across the bottom of the screen, which could all be labeled dynamically under software control. This, coupled with the forms-management software, could make for some pretty decent user interfaces for 1980. The other software bundled with the 250's OS was HP's IMAGE database, a report writer, and of course to program it all with, HP 250 BASIC.

It was a sweet machine, and fantastically expensive, and the moment the IBM PC came out, Mr. Hewlett and Mr. Packard looked at each other, shrugged, and took Old Yeller out back and shot him in the head. Kind of unfortunate for those software vendors who'd built their business on it. I believe my company actually got a settlement from HP, though I wasn't privy to the details.

And then we switched over to PR1ME, but that's another story. (Our PR1ME sales rep, an otherwise nice guy, went on to become CEO of one of the most hated malware vendors in the industry.)

link|flag
vote up 3 vote down

I'm currently working on a bank note sorter.

Ok, it sounds boring, but...

It's modular, each module contains an ICOP running vxWorks and the number of modules is scalable, the minimum number being four. It has image processing capabilites ranging from pattern matching to full OCR provided by three or more PCs running Win2K Server. The whole machine is controlled by an XP based machine running a .Net2 based GUI. There are two networks within the machine, an ethernet and a CAN. An when it runs, it makes a lot of noise and can process over 2000 notes a minute. And it's big. And, best of all, it has an attachment that looks like a Stargate*!

Well, it impresses my four year old boy.

Skizz

* sadly, without the interplantary transport wormhole.

link|flag
vote up 3 vote down

my very first programming contract was for my mom. I wrote a very simple and rudimentary "to do list" using a TI 994a Coolest machine ever! Specially for a 9 year old :)

link|flag
1  
i never really completed the project... lack of requirement definitions, ever changing user requests, lack of management accountability, etc... but my mo was very understanding! – Andres Mar 1 at 23:49
show 1 more comment
vote up 3 vote down

I would have to say the coolest one is the one I built myself using FPGAs and other chips for a college class; and by built I mean actually built (wirewrapping), not just downloading a design to an existing FPGA board. My own architecture, instruction set, and assembler. You haven't lived until you loaded/run a program and read back the results using a logic analyzer :)

link|flag
vote up 3 vote down

In the picture is a fridge that cools down to 0.3 deg above absolute zero by evaporating helium 3 - a very rare helium isotope. We used it to measure heat capacity of superconductors but now is being used for other general purpose low temperature experiments.

Heliox fridge

Incidentally the rack on the right is controlled via a GPIB bus and some hackish Delphi code.

link|flag
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 2 vote down

My Mac Pro :)

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.