Hacker News new | past | comments | ask | show | jobs | submit login

It's articles like these that make me wish I was old enough to have experienced computers before they became "fast". It was these machines that formed the thinking of many of our greatest coders today and I can't relate to that as I'm too young. Oh well



You can still write code that stretches a modern machine to its limits. For example, can you make a realtime raytracer? Can you crunch through 13GB of StackOverflow data and extract useful statistics? Can you write an interpreter for a subset of your favorite language? Can you make it fast enough? Can you add a JIT? Can you take a genetic algorithm that takes hours to run and get the time down to a few minutes? Can you write a multi-agent simulation that will scale from ten to ten thousand agents on a MacBook Pro?

Nope. Computers aren't fast enough yet :p


You can do all that, but programming one of these old computers or a modern micro controller allows you to almost see the bits and bytes flowing (if you program in asm).

Nowadays it's even hard to know how a pixel got to the monitor from your RAM in the first place, with the massive amount of knowledge needed and countless layers in between.

Just the datasheet of a memory controller is many times longer than the few pages needed for the asm instruction set and simple schematics of those times. Not to mention the M or G number of transistors on modern chips :)


I can't argue with that. I've personally tried to write a toy OS on the x86 architecture. The amount of processor documentation you have to get through is mind boggling, after which you're still left with documentation for the plethora of peripheral device. I view this as a failure of the PC architecture. There's no reason for things to be so complex.

OTOH, I know a few folks who work with all kinds of micros. Once these folks were trying to interface a SD card reader with a tiny LCD screen that had an onboard processor. They had (had to have, in fact) low-level access to the card reader. You had to know the ins and outs of whatever filesystem the SD card was formatted with because you only had raw access to the card. As in, you could go to an address on the card and do something to the bytes stored there, and that's it. After diddling the card reader interface for a while, they eventually figured out how to get data on the card, but there was a problem: sometimes the card reader wouldn't write the data to the card at all. After trying to pinpoint and fix the issue in code, an entire night of hacking later, the problem turned out to be a faulty power adapter.

It was a fun night. One that a "modern" computer couldn't afford you.


Start spending time programming microcontrollers and relive the 80's at 1/10th of the price.


Do you know of any microcontrollers that you can program ON? (Without needing to flash with a computer?)

I've played around with machine code monitors on C64 emulators, and I'd love to have something like this on a microcontroller today. (Perhaps a machine code monitor on a calculator?) I don't know of anything like this.


There's a company called Briel Computers that sells replicas of the Apple I, Altair 8800 and more.

The Maker Shed sells a 4-bit microcomputer trainer from Japan. It has a hexadecimal keypad, 1 7-segment LED display, some other lights and a speaker.

You could also go to eBay or a swap meet and buy an old microcomputer.

http://www.brielcomputers.com/

http://www.makershed.com/ProductDetails.asp?ProductCode=MKGK...


I don't actually but the 4-bit micro mentioned below sounds cool.

I am currently working on an atmega project and have hopes of bringing such a "self-hosted" programming environment to the device, which I'll post to HN when I get it working.


Probably the best way to get something like that would be to build it yourself. It may not be the kind of project you're looking for though.


I'm guessing the experience is similar to hacking graphing calculators, if you've ever played around with those in school. That's where I got started, on a TI-84+ :)

And no, it hasn't damaged my brain, I think.


It still applies. The things that are hard to do today - and those that require ingenious hacks - are the ones that future computers will find trivial.


Well, there are emulators out there.

On the other hand, if you don't mind things being fast as well as simple, there are dead-simple hobby OSes out there for exactly this sort of tinkering: http://news.ycombinator.com/item?id=1088617

I do remember the fun of PEEKing and POKEing with my TRS-80...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: