Ten Hundred Words Of Science
From charlesreid1
Original description from ZeroMQ:
"ZeroMQ in a Hundred Words"
ZeroMQ (also known as ØMQ, 0MQ, or zmq) looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fan-out, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems. ZeroMQ is from iMatix and is LGPLv3 open source.
Now translate that using the most common ten hundred words.
First crack:
a set of steps for a computer to take, so that when there are many computers doing those steps, they will do it fast and without getting in each other's way. when it carries out the steps, each computer becomes a worker that will carry numbers wrapped in different number clothes. you can have as many computers as you would like, and each one can act on its own or it can talk to others, it can listen or it can talk, it can share or it can hide, it can ask or it can answer. it is fast - so fast that it can be right in the middle of a whole lot of busy end points.