Skip to content

Conversation

@pearmini
Copy link
Collaborator

@pearmini pearmini commented Jan 3, 2026

/**
 * ============================================================================
 * =                            Computer Layers                               =
 * ============================================================================
 *
 * > Computers can be seen as layers of technology, with increasing complexity and
 * > abstraction as they go up. Programming can happen at different layers.
 *
 * - By Everest Pipkin, 2020
 * - Ref. https://ifyoulived.org/fuzzy/#I%20-%20Computers%20were%20humans
 */

const layers = [
  "Application",
  "Algorithm",
  "Programming Language",
  "Assembly Language",
  "Machine Code",
  "Instruction Set Architecture",
  "Microarchitecture",
  "Gates/Registers",
  "Device (Transistors)",
  "Physicals",
];

//➜ +-----+--------------------------------+
//➜ | {0} |                  "Application" |
//➜ |-----|--------------------------------|
//➜ | {1} |                    "Algorithm" |
//➜ |-----|--------------------------------|
//➜ | {2} |         "Programming Language" |
//➜ |-----|--------------------------------|
//➜ | {3} |            "Assembly Language" |
//➜ |-----|--------------------------------|
//➜ | {4} |                 "Machine Code" |
//➜ |-----|--------------------------------|
//➜ | {5} | "Instruction Set Architecture" |
//➜ |-----|--------------------------------|
//➜ | {6} |            "Microarchitecture" |
//➜ |-----|--------------------------------|
//➜ | {7} |              "Gates/Registers" |
//➜ |-----|--------------------------------|
//➜ | {8} |         "Device (Transistors)" |
//➜ |-----|--------------------------------|
//➜ | {9} |                    "Physicals" |
//➜ +-----+--------------------------------+
for (let i = 0; i < layers.length; i++) {
  echo.key(i)(layers[i]);
}

@vercel
Copy link
Contributor

vercel bot commented Jan 3, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
recho-notebook Ready Ready Preview, Comment Jan 3, 2026 0:38am

@pearmini pearmini merged commit 4dd63a1 into main Jan 3, 2026
3 checks passed
@pearmini pearmini deleted the computer-layers branch January 3, 2026 00:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant