Skip to content

Commit 05791af

Browse files
committed
Once More—A Computer Revolution
1 parent b8c4077 commit 05791af

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { Heading, GlobalLayout, Title, Term, Image, BlockQuote, Note, Link } from "../../../utils";
2+
import Head from 'next/head';
3+
4+
<Note Title={null}>This is part of an <Link href="/advent-of-papers">Advent Series</Link>.</Note>
5+
6+
7+
<Head>
8+
<title>Once More—A Computer Revolution - Joseph Weizenbaum</title>
9+
<meta
10+
name="og:description"
11+
content="In 1978, Joseph Weizenbaum asked if computers will really have a big impact, he was wrong in the most interesting way."
12+
/>
13+
</Head>
14+
15+
<Heading text={<>Once More—A Computer Revolution - Joseph Weizenbaum (<Link href="/pdfs/computer-revolution.pdf">pdf</Link>)</>} />
16+
17+
## Summary
18+
Ran out of time today.
19+
20+
> Will the home computer be as pervasive as today's television se,s? The answer almost certainly is no. The home, pictured in the accounts of home computer advocates, is middle class, or even upper middle class. There are some appliances computers must control: the wall-to-wall carpeting must be cleaned by a robot, roasts are in the oven, the computer helps "the mother" pay the telephone bill, and so on and on.
21+
22+
## Conclusion
23+
24+
This is a fascinating critique. Completely wrong in its prediction but captures something all too true.
25+
26+
> We may recall the euphoric dreams that were articulated by then Secretary of Commerce Herbert Hoover, at the dawn of commercial radio broadcasting, and again by others when mass television broadcasting was about to become a reality. It was foreseen that these media would exert an enormously benefcial influence on American culture. Americans would be exposed to correct English, to great literature, great drama, and so on. We all know what actually happened. The technological dream was more than realized, but the cultural dream was not.
27+
28+
29+
export default function ComputerRevolution({ children }) {
30+
return <GlobalLayout>{children}</GlobalLayout>;
31+
}

pages/advent-of-papers/index.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,13 @@ export const finishedPapers = [
108108
text: "Dec 21: What is Conceptual Engineering and What Should It Be?",
109109
href: "/advent-of-papers/2024/dec-21-conceptual-engineering",
110110
mdx: true,
111-
}
111+
},
112+
{
113+
text: "Dec 22: Once More—A Computer Revolution",
114+
href: "/advent-of-papers/2024/dec-22-computer-revolution",
115+
mdx: true,
116+
},
117+
112118
]
113119

114120
const consideredPapers = [
@@ -121,7 +127,6 @@ const consideredPapers = [
121127
{text: "On Reversible Subroutines and Computers That Run Backwards - E. D. Reilly, Jr. and F. D. Federighi"},
122128
{text: "Three Challenges to Chalmers on Computational Implementation - Mark Sprevak"},
123129
{text: "Content, Computation, and Externalism - Oron Shagrir"},
124-
{text: "Once More—A Computer Revolution - Joseph Weizenbaum"},
125130
]
126131

127132
const Advent = () => (
1.04 MB
Binary file not shown.

0 commit comments

Comments
 (0)