1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
|
<html op="item">
<head>
<meta name="referrer" content="origin">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="news.css?tAF4tq9j2V6cVUuRar65">
<link rel="shortcut icon" href="favicon.ico">
<title>Can we survive technology? (1955) [pdf] | Hacker News</title>
</head>
<body>
<center>
<table id="hnmain" border="0" cellpadding="0" cellspacing="0" width="85%"
bgcolor="#f6f6ef">
<tr>
<td bgcolor="#ff6600">
<table border="0" cellpadding="0" cellspacing="0" width="100%"
style="padding:2px">
<tr>
<td style="width:18px;padding-right:4px"><a
href="https://news.ycombinator.com"><img src="y18.gif"
width="18" height="18" style="border:1px white solid;"></a>
</td>
<td style="line-height:12pt; height:10px;"><span
class="pagetop"><b class="hnname"><a href="news">Hacker
News</a></b>
<a href="newest">new</a> | <a href="front">past</a> | <a
href="newcomments">comments</a> | <a href="ask">ask</a> | <a
href="show">show</a> | <a href="jobs">jobs</a> | <a
href="submit">submit</a> </span></td>
<td style="text-align:right;padding-right:4px;"><span
class="pagetop">
<a href="login?goto=item%3Fid%3D20724363">login</a>
</span></td>
</tr>
</table>
</td>
</tr>
<tr id="pagespace" title="Can we survive technology? (1955) [pdf]"
style="height:10px"></tr>
<tr>
<td>
<table class="fatitem" border="0">
<tr class='athing' id='20724363'>
<td align="right" valign="top" class="title"><span
class="rank"></span></td>
<td valign="top" class="votelinks">
<center><a id='up_20724363'
href='vote?id=20724363&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="title">
<a href="http://geosci.uchicago.edu/~kite/doc/von_Neumann_1955.pdf"
class="storylink">
Can we survive technology? (1955) [pdf]
</a>
<span class="sitebit comhead">
(
<a href="from?site=uchicago.edu"><span class="sitestr">uchicago.edu</span></a>
)
</span></td>
</tr>
<tr>
<td colspan="2"></td>
<td class="subtext">
<span class="score" id="score_20724363">62 points</span> by <a
href="user?id=aidanrocke" class="hnuser">aidanrocke</a> <span
class="age"><a href="item?id=20724363">7 hours ago</a></span>
<span id="unv_20724363"></span> | <a
href="hide?id=20724363&goto=item%3Fid%3D20724363">hide</a>
| <a
href="https://hn.algolia.com/?query=Can%20we%20survive%20technology%3F&sort=byDate&dateRange=all&type=story&storyText=false&prefix&page=0"
class="hnpast">past</a> | <a
href="https://www.google.com/search?q=Can%20we%20survive%20technology%3F">web</a>
| <a
href="fave?id=20724363&auth=33b19c1c456d816b8130681d8038bc03659e9883">favorite</a>
| <a href="item?id=20724363">35 comments</a> </td>
</tr>
<tr style="height:10px"></tr>
<tr>
<td colspan="2"></td>
<td>
<form method="post" action="comment"><input type="hidden"
name="parent" value="20724363"><input type="hidden"
name="goto" value="item?id=20724363"><input type="hidden"
name="hmac"
value="6dded8f4002c4457bd16a43bce4e31883a75505c"><textarea
name="text" rows="6" cols="60"></textarea>
<br><br><input type="submit" value="add comment"></form>
</td>
</tr>
</table><br><br>
<table border="0" class='comment-tree'>
<tr class='athing comtr ' id='20724657'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724657'
href='vote?id=20724657&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=erostrate"
class="hnuser">erostrate</a> <span class="age"><a
href="item?id=20724657">6 hours ago</a></span>
<span id="unv_20724657"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20724657)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">"The carbon dioxide
released into the atmosphere by industry's
burning of coal and oil-—more than half of it during
the last generation—may have changed the
atmosphere's composition sufficiently to account
for a general warming of the world by about one degree
Fahrenheit."<p>"Even in an airplane the
number of vacuum tubes now approaches or exceeds a
thousand. Other machines, containing up to 10,000
vacuum tubes, up to five times more crystals, and
possibly more than 100,000 cores, now operate
faultlessly over long periods, performing many
millions of regulated, preplanned actions per
second, with an expectation of only a few errors per
day or week. Many such machines have been built to
perform complicated scientific and engineering
calculations and large scale accounting and
logistical surveys. There is no doubt that they will
be used for elaborate industrial process control,
logistical, economic, and other
planning"</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724657&goto=item%3Fid%3D20724363%2320724657">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724640'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724640'
href='vote?id=20724640&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=the-dude" class="hnuser">the-dude</a>
<span class="age"><a href="item?id=20724640">6 hours
ago</a></span> <span
id="unv_20724640"></span><span class="par"></span>
<a class="togg" n="10" href="javascript:void(0)"
onclick="return toggle(event, 20724640)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">"The carbon dioxide
released into the atmosphere by industry's
burning of coal and oil-—more than half of it during
the last generation—may have changed the
atmosphere's composition sufficiently to account
for a general warming of the world by about one degree
Fahrenheit. "<p>edit : this PDF looks like it has
been scanned, but the text is selectable. Not sure I
have seen this before.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724640&goto=item%3Fid%3D20724363%2320724640">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724763'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724763'
href='vote?id=20724763&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;">
<span class="comhead">
<a href="user?id=IceWreck" class="hnuser">IceWreck</a>
<span class="age">
<a href="item?id=20724763">5 hours ago</a>
</span>
<span id="unv_20724763"></span>
<span class="par"></span>
<a class="togg" n="7" href="javascript:void(0)"
onclick="return toggle(event, 20724763)"></a>
<span class='storyon'></span>
</span>
</div>
<br>
<div class="comment">
<span class="commtext c00">This is done with OCR,
specially when digitizing things.<p>The Internet
Archive does this a lot. There was an old 90s book
that I needed but they never made an electronic
edition. So the internet archive, scanned and
digitized it with character recognition to make a
select-able PDF like this, as well an epub that can
be read on your phone like any other ebook.<p>Now
that book is available for anyone to borrow and
read. (its still copyrighted so you gotta access
it via their DRM controlled app/website, but
that can be easily broken and its better than not
having access to that book at all)</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724763&goto=item%3Fid%3D20724363%2320724763">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724789'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724789'
href='vote?id=20724789&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=the-dude" class="hnuser">the-dude</a>
<span class="age"><a href="item?id=20724789">5 hours
ago</a></span> <span
id="unv_20724789"></span><span class="par"></span>
<a class="togg" n="6" href="javascript:void(0)"
onclick="return toggle(event, 20724789)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Thanks for the heads-up. Of
course I do know what OCR is. Just hadn't seen it
combined in the wild like this.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724789&goto=item%3Fid%3D20724363%2320724789">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724935'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20724935'
href='vote?id=20724935&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=rayiner" class="hnuser">rayiner</a>
<span class="age"><a href="item?id=20724935">5 hours
ago</a></span> <span
id="unv_20724935"></span><span class="par"></span>
<a class="togg" n="5" href="javascript:void(0)"
onclick="return toggle(event, 20724935)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Acrobat has had this as a
built in feature forever.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724935&goto=item%3Fid%3D20724363%2320724935">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725011'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="160">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725011'
href='vote?id=20725011&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=the-dude" class="hnuser">the-dude</a>
<span class="age"><a href="item?id=20725011">5 hours
ago</a></span> <span
id="unv_20725011"></span><span class="par"></span>
<a class="togg" n="2" href="javascript:void(0)"
onclick="return toggle(event, 20725011)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Didn't know that either.
Makes me wonder if my browser ( PDF.js ) is doing the
OCR? Anybody knows?</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725011&goto=item%3Fid%3D20724363%2320725011">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725617'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="200">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725617'
href='vote?id=20725617&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=philipkglass"
class="hnuser">philipkglass</a> <span class="age"><a
href="item?id=20725617">3 hours ago</a></span>
<span id="unv_20725617"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20725617)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">He means that Acrobat Pro
includes an OCR system that you can use to add a
searchable text layer to scanned documents. Readers
like Acrobat Reader and PDF.js do not perform OCR. You
won't be able to use them to search scanned
documents if the document creator did not run OCR.<p>
Google runs its own OCR pass on scanned PDF
documents in order to index them better. It can be
annoying when you get a 50 page scanned document as
a search result and then find out that it
doesn't include a text layer, so you need to
run your own OCR or skim the whole thing to find the
relevant parts.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725617&goto=item%3Fid%3D20724363%2320725617">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725206'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="160">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725206'
href='vote?id=20725206&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=agumonkey"
class="hnuser">agumonkey</a> <span class="age"><a
href="item?id=20725206">4 hours ago</a></span>
<span id="unv_20725206"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20725206)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">True, but as parent, I
realized that only very recently.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725206&goto=item%3Fid%3D20724363%2320725206">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725003'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="160">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725003'
href='vote?id=20725003&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=alttab" class="hnuser">alttab</a>
<span class="age"><a href="item?id=20725003">5 hours
ago</a></span> <span
id="unv_20725003"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725003)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c5a">Guy's login is
"the-dude," he's been around for a
while.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725003&goto=item%3Fid%3D20724363%2320725003">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724688'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724688'
href='vote?id=20724688&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=leggomylibro"
class="hnuser">leggomylibro</a> <span class="age"><a
href="item?id=20724688">6 hours ago</a></span>
<span id="unv_20724688"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20724688)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">It's called Optical
Character Recognition:<p><a
href="https://en.wikipedia.org/wiki/Optical_character_recognition"
rel="nofollow">https://en.wikipedia.org/wiki/Optical_character_recognition</a>
<p>One of the few applications where ML-based image
recognition actually works reliably enough for
real-world applications; the USPS has been using
neural nets to read zip codes for decades.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724688&goto=item%3Fid%3D20724363%2320724688">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20726063'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20726063'
href='vote?id=20726063&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=dinofacedude"
class="hnuser">dinofacedude</a> <span class="age"><a
href="item?id=20726063">2 hours ago</a></span>
<span id="unv_20726063"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20726063)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">You see it a lot in academic
databases</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20726063&goto=item%3Fid%3D20724363%2320726063">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724751'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724751'
href='vote?id=20724751&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=damidekronik"
class="hnuser">damidekronik</a> <span class="age"><a
href="item?id=20724751">5 hours ago</a></span>
<span id="unv_20724751"></span><span
class="par"></span> <a class="togg" n="20"
href="javascript:void(0)"
onclick="return toggle(event, 20724751)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">"Consequently, a few
decades hence energy may be free—just
like the unmetered air—with coal and oil used mainly
as raw materials for organic chemical synthesis, to
which, as experience has shown, their properties are
best suited."<p>I am wondering why this
prediction is so off given how other ones are spot
on? How the situation back then made John von
Neumann believe it, and what happened differently,
moving this into the realms of fantasy.<p>Perhaps if
an another effort of a scale of the Manhattan
Project had happened, the concept of the
"free energy" would have been more
realistic.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724751&goto=item%3Fid%3D20724363%2320724751">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724814'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724814'
href='vote?id=20724814&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=jaysonelliot"
class="hnuser">jaysonelliot</a> <span class="age"><a
href="item?id=20724814">5 hours ago</a></span>
<span id="unv_20724814"></span><span
class="par"></span> <a class="togg" n="11"
href="javascript:void(0)"
onclick="return toggle(event, 20724814)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">"Too cheap to
meter" was a common assumption about the future
of nuclear power when it first began. If you only look
at the amount of power available based on the raw
materials, it's a reasonable prediction.<p>They
simply didn't take into account all of the
associated costs and complexities that would be
involved with the actual nuclear power plants, not
to mention the political and social complications.
<p>That doesn't mean such a future can never
happen, it's theoretically possible.
We're simply in a place right now where
it's hard to imagine with our current level
of technology and our current energy
economy.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724814&goto=item%3Fid%3D20724363%2320724814">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724911'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724911'
href='vote?id=20724911&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=rayiner" class="hnuser">rayiner</a>
<span class="age"><a href="item?id=20724911">5 hours
ago</a></span> <span
id="unv_20724911"></span><span class="par"></span>
<a class="togg" n="6" href="javascript:void(0)"
onclick="return toggle(event, 20724911)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">They didn’t expect that
government regulation would kill innovation in the
nuclear industry. If nuclear plants had not been
regulated so highly decades ago, we’d have abundant,
clean power today. We may have had hundreds of
thousands more dead from nuclear accidents, but that
would pale in comparison to the tens of millions saved
by phasing out coal earlier and pushing off climate
change.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724911&goto=item%3Fid%3D20724363%2320724911">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724915'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20724915'
href='vote?id=20724915&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=dragonwriter"
class="hnuser">dragonwriter</a> <span class="age"><a
href="item?id=20724915">5 hours ago</a></span>
<span id="unv_20724915"></span><span
class="par"></span> <a class="togg" n="2"
href="javascript:void(0)"
onclick="return toggle(event, 20724915)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">> They didn’t expect that
government regulation would kill innovation in the
nuclear industry. If nuclear plants had not been
regulated so highly decades ago, we’d have abundant,
clean power today.<p>The regulation is basically a
liability shield and subsidy, the industry wants
more, not less, of it to build plants.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724915&goto=item%3Fid%3D20724363%2320724915">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724947'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="160">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20724947'
href='vote?id=20724947&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=rayiner" class="hnuser">rayiner</a>
<span class="age"><a href="item?id=20724947">5 hours
ago</a></span> <span
id="unv_20724947"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20724947)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">That doesn’t mean that
regulation doesn’t impede innovation, e.g. by
eliminating the incentive to adopt safer cycles.
Moreover, the onerous review of reactor designs means
there is a high incentive to stick with older designs
that have already been reviewed by the government.
(Thats a double whammy, because it makes newer, safer
designs harder to deploy while reducing the incentive
to deploy them.)</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724947&goto=item%3Fid%3D20724363%2320724947">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725351'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725351'
href='vote?id=20725351&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=dctoedt" class="hnuser">dctoedt</a>
<span class="age"><a href="item?id=20725351">4 hours
ago</a></span> <span
id="unv_20725351"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725351)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">> <i>If nuclear plants had
not been regulated so highly decades ago, we’d have
abundant, clean power today. We may have had
hundreds of thousands more dead from nuclear
accidents, but that would pale in comparison to the
tens of millions saved by phasing out coal earlier
and pushing off climate change.</i>
<p>And if wishes were horses .... It's hard to
imagine how any democratic society could have gotten
past the salience bias to make that happen. (Also,
there's the better-the-devil-you-know
familiarity bias working in coal's favor, to
say nothing of the political influence of voters
depending directly or indirectly on coal for their
livelihoods.)<p>EDIT: This also brought to mind the
trolley problem [0], with the added wrinkle that
it's not possible to predict with any
confidence which specific persons would actually
be injured or killed.<p>[0] <a
href="https://en.wikipedia.org/wiki/Trolley_problem"
rel="nofollow">https://en.wikipedia.org/wiki/Trolley_problem</a>
</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725351&goto=item%3Fid%3D20724363%2320725351">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725695'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725695'
href='vote?id=20725695&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=jodrellblank"
class="hnuser">jodrellblank</a> <span class="age"><a
href="item?id=20725695">3 hours ago</a></span>
<span id="unv_20725695"></span><span
class="par"></span> <a class="togg" n="2"
href="javascript:void(0)"
onclick="return toggle(event, 20725695)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00"><i>If nuclear plants had not
been regulated so highly decades ago, we’d have
abundant, clean power today.</i>
<p>Are African and Latin American countries with less
effective governments and less regulation are
leading the world in innovation, cheap nuclear
power, genetic engineering and so on?<p>A casual
disregard for the living and a "happily ever
after" fairy tale correlates pretty well with
a lot of cult and religious behaviours, and
associated human tragedies, but not very well with
actual happily ever after, I think.
</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725695&goto=item%3Fid%3D20724363%2320725695">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725825'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="160">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725825'
href='vote?id=20725825&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=rayiner" class="hnuser">rayiner</a>
<span class="age"><a href="item?id=20725825">2 hours
ago</a></span> <span
id="unv_20725825"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725825)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Low regulation is a necessary
but not sufficient condition for innovation. You also
need the predicate technologies, precision
manufacturing capabilities, etc. But within the US,
where we have those things, loosely regulated
industries (like the Internet) have consistently
evolved faster than heavily regulated ones.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725825&goto=item%3Fid%3D20724363%2320725825">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724847'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724847'
href='vote?id=20724847&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=damidekronik"
class="hnuser">damidekronik</a> <span class="age"><a
href="item?id=20724847">5 hours ago</a></span>
<span id="unv_20724847"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20724847)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Yea, that is of my
understanding too. There was no need for any great
advance in that matter at the time. Now however, the
situation is different, and yet, not as pressing as
the global conflict back then to fund another
"Los Alamos".</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724847&goto=item%3Fid%3D20724363%2320724847">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725187'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725187'
href='vote?id=20725187&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=agumonkey"
class="hnuser">agumonkey</a> <span class="age"><a
href="item?id=20725187">4 hours ago</a></span>
<span id="unv_20725187"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20725187)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">I wonder if they had the
'capacity paradox' in mind, where the more
you can have, you more you will use. In the 50s energy
usage were quite minuscule compared to today I
think.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725187&goto=item%3Fid%3D20724363%2320725187">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724819'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724819'
href='vote?id=20724819&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=DanBC" class="hnuser">DanBC</a> <span
class="age"><a href="item?id=20724819">5 hours
ago</a></span> <span
id="unv_20724819"></span><span class="par"></span>
<a class="togg" n="2" href="javascript:void(0)"
onclick="return toggle(event, 20724819)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">> We're simply in a
place right now where it's hard to imagine with
our current level of technology and our current energy
economy.<p>...and the fact we have about 4bn more
people here than we did in 1960.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724819&goto=item%3Fid%3D20724363%2320724819">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725328'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725328'
href='vote?id=20725328&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=dragonwriter"
class="hnuser">dragonwriter</a> <span class="age"><a
href="item?id=20725328">4 hours ago</a></span>
<span id="unv_20725328"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20725328)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">We have far fewer people than
growth rate at the time suggested; IIRC, around that
time growth was viewed as exponential with a doubling
period of ~35 years, had it continued the population
would be 10.74 bn now, nearly 1.5× what it.<p>So, no,
population (at least <i>high</i> population)
isn't something that was unforeseen.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725328&goto=item%3Fid%3D20724363%2320725328">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725454'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725454'
href='vote?id=20725454&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=carapace" class="hnuser">carapace</a>
<span class="age"><a href="item?id=20725454">3 hours
ago</a></span> <span
id="unv_20725454"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725454)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">The sequestration of atomic
technology (not just power) is one of the rare areas
where the interests of the good guys and bad guys
coincide.<p>Energy <i>is</i> free: we have a fusion
generator that runs 24/7 with no maintenance
and is so powerful it can burn out your retinas from
150 million kilometers away.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725454&goto=item%3Fid%3D20724363%2320725454">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724797'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724797'
href='vote?id=20724797&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=tim58" class="hnuser">tim58</a> <span
class="age"><a href="item?id=20724797">5 hours
ago</a></span> <span
id="unv_20724797"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20724797)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">This was before Chernobyl,
and without Chernobyl the industrialized world would
probably be mainly on nuclear fission power by now.<p>
This was also at a time when nuclear fusion energy
was theoretically possible but before half a century
of research has labeled the problem 'very
hard'.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724797&goto=item%3Fid%3D20724363%2320724797">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725213'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725213'
href='vote?id=20725213&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=CamouflagedKiwi"
class="hnuser">CamouflagedKiwi</a> <span
class="age"><a href="item?id=20725213">4 hours
ago</a></span> <span
id="unv_20725213"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725213)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Sounds a bit like the Jevons
paradox - we improve the efficiency of energy
consumption, but it does not result in it being free,
because demand increases to counter.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725213&goto=item%3Fid%3D20724363%2320725213">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724994'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724994'
href='vote?id=20724994&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=Spooky23" class="hnuser">Spooky23</a>
<span class="age"><a href="item?id=20724994">5 hours
ago</a></span> <span
id="unv_20724994"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20724994)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Demand increased
dramatically.<p>If federal mortgage rules empathized
solar, you’d see near free energy production in
residential in a decade or two.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724994&goto=item%3Fid%3D20724363%2320724994">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725247'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725247'
href='vote?id=20725247&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=philipkglass"
class="hnuser">philipkglass</a> <span class="age"><a
href="item?id=20725247">4 hours ago</a></span>
<span id="unv_20725247"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20725247)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">He made other incorrect
predictions in the same document. We continue to
(incidentally and carelessly) change the climate, but
have yet to achieve anything like the reliably
controllable weather he anticipated.<p>He also
incorrectly anticipated that atomic transmutation of
the elements would become a bigger trend than
chemical rearrangement of existing elements.<p>
"It is worth emphasizing that the main trend
will be systematic exploration of nuclear
reactions — that is, the transmutation of
elements, or alchemy rather than chemistry."
<p>As for why he was mistaken about nuclear power,
it's possible that he was extrapolating
from the fantastically rapid progress of nuclear
weapons technology. Fission was demonstrated in
1938, the first chain reaction in 1942, the
first fission weapon in 1945. The first megaton
scale thermonuclear explosion was demonstrated
in 1952 and serial production of thermonuclear
weapons began in 1954. Between 1944 and 1954 the
explosive power of the largest military bombs
went up by a factor of roughly <i>two
million</i> [1] [2]. There was a 2300-fold
leap from Grand Slam to Little Boy (6.5 tons TNT
equivalent to 15 kilotons) and another
thousand-fold leap from Little Boy to Castle
Bravo (15 kilotons to 15 megatons).<p>The
challenges of making useful power reactors for
electricity production are much different.
Civilian power reactors have to compete with
other electricity sources on cost. They have
to produce power for decades rather than a
fraction of a second. They are expected to
fully contain fission products rather than
disperse them widely as fallout. Recall that
at the time of this writing, 1955, no country
had yet built a power reactor comparable in
output to large coal or hydroelectric plants.
There had only been some small demonstrations
like the 2 megawatts of electricity produced
by the BORAX-III reactor. The actual
difficulties to be encountered at larger
scales were not yet known.<p>Finally,
"affordable" electricity was a
moving target. In constant dollars, large
American industrial buyers were paying 40%
less per megawatt hour in 1970 than they
were in 1950 [3]. Concerns about acutely
hazardous air pollution were not yet
widespread enough to justify a cost premium
over fossil-generated power. Widespread
concerns about greenhouse gas emissions were
even further off.<p>[1] <a
href="https://en.wikipedia.org/wiki/Grand_Slam_(bomb)"
rel="nofollow">https://en.wikipedia.org/wiki/Grand_Slam_(bomb)</a>
<p>[2] <a
href="https://en.wikipedia.org/wiki/Mark_17_nuclear_bomb"
rel="nofollow">https://en.wikipedia.org/wiki/Mark_17_nuclear_bomb</a>
<p>[3] <a
href="https://www.census.gov/history/pdf/histstats-colonial-1970.pdf"
rel="nofollow">https://www.census.gov/history/pdf/histstats-colonial-1970.p...</a>
- page 827</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725247&goto=item%3Fid%3D20724363%2320725247">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725001'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725001'
href='vote?id=20725001&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=n-exploit"
class="hnuser">n-exploit</a> <span class="age"><a
href="item?id=20725001">5 hours ago</a></span>
<span id="unv_20725001"></span><span
class="par"></span> <a class="togg" n="3"
href="javascript:void(0)"
onclick="return toggle(event, 20725001)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c73">Within the U.S. - we live in
a profit-maximizing capitalist structure. Why would
any economic entity give something away for free when
a profit can be made?</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725001&goto=item%3Fid%3D20724363%2320725001">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725134'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="80"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725134'
href='vote?id=20725134&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=al3xandre"
class="hnuser">al3xandre</a> <span class="age"><a
href="item?id=20725134">4 hours ago</a></span>
<span id="unv_20725134"></span><span
class="par"></span> <a class="togg" n="2"
href="javascript:void(0)"
onclick="return toggle(event, 20725134)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Competition pushing price
down to a near-zero cost base? like the $1
microcontroller you can buy today.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725134&goto=item%3Fid%3D20724363%2320725134">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725272'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="120">
</td>
<td valign="top" class="votelinks">
<center><a id='up_20725272'
href='vote?id=20725272&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=hhh" class="hnuser">hhh</a> <span
class="age"><a href="item?id=20725272">4 hours
ago</a></span> <span
id="unv_20725272"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725272)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">or the one cent
microcontroller you can buy today.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725272&goto=item%3Fid%3D20724363%2320725272">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724835'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724835'
href='vote?id=20724835&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=hi41" class="hnuser">hi41</a> <span
class="age"><a href="item?id=20724835">5 hours
ago</a></span> <span
id="unv_20724835"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20724835)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">I remember the immortal words
of Dr. Martin Luther King Jr. about man being able to
master technology and yet not have have grown
comparably enough in spirituality to live as
brothers.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724835&goto=item%3Fid%3D20724363%2320724835">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724368'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724368'
href='vote?id=20724368&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=aidanrocke"
class="hnuser">aidanrocke</a> <span class="age"><a
href="item?id=20724368">7 hours ago</a></span>
<span id="unv_20724368"></span><span
class="par"></span> <a class="togg" n="1"
href="javascript:void(0)"
onclick="return toggle(event, 20724368)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">For the kind of explosiveness
that man
will be able to contrive by 1980, the globe
is dangerously small, its political units
dangerously unstable.-John von Neumann</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724368&goto=item%3Fid%3D20724363%2320724368">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20724750'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="0"></td>
<td valign="top" class="votelinks">
<center><a id='up_20724750'
href='vote?id=20724750&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=c3534l" class="hnuser">c3534l</a>
<span class="age"><a href="item?id=20724750">5 hours
ago</a></span> <span
id="unv_20724750"></span><span class="par"></span>
<a class="togg" n="2" href="javascript:void(0)"
onclick="return toggle(event, 20724750)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">I'm not sure if there
ever existed a man as ahead of his time as Von
Neumann.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20724750&goto=item%3Fid%3D20724363%2320724750">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr class='athing comtr ' id='20725525'>
<td>
<table border='0'>
<tr>
<td class='ind'><img src="s.gif" height="1" width="40"></td>
<td valign="top" class="votelinks">
<center><a id='up_20725525'
href='vote?id=20725525&how=up&goto=item%3Fid%3D20724363'>
<div class='votearrow' title='upvote'></div>
</a></center>
</td>
<td class="default">
<div style="margin-top:2px; margin-bottom:-10px;"><span
class="comhead">
<a href="user?id=carapace" class="hnuser">carapace</a>
<span class="age"><a href="item?id=20725525">3 hours
ago</a></span> <span
id="unv_20725525"></span><span class="par"></span>
<a class="togg" n="1" href="javascript:void(0)"
onclick="return toggle(event, 20725525)"></a> <span
class='storyon'></span>
</span></div><br>
<div class="comment">
<span class="commtext c00">Da Vinci? Bucky Fuller?<p>
Legend has it that when Gödel presented "On the
Completeness of the Logical Calculus" von
Neumann threw in the towel (on Hilbert's
program) on the spot.</span>
<div class='reply'>
<p>
<font size="1">
<u><a
href="reply?id=20725525&goto=item%3Fid%3D20724363%2320725525">reply</a></u>
</font>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br><br>
</td>
</tr>
<tr>
<td><img src="s.gif" height="10" width="0">
<table width="100%" cellspacing="0" cellpadding="1">
<tr>
<td bgcolor="#ff6600"></td>
</tr>
</table><br>
<center><span class="yclinks"><a
href="newsguidelines.html">Guidelines</a>
| <a href="newsfaq.html">FAQ</a>
| <a href="mailto:hn@ycombinator.com">Support</a>
| <a href="https://github.com/HackerNews/API">API</a>
| <a href="security.html">Security</a>
| <a href="lists">Lists</a>
| <a href="bookmarklet.html" rel="nofollow">Bookmarklet</a>
| <a href="http://www.ycombinator.com/legal/">Legal</a>
| <a href="http://www.ycombinator.com/apply/">Apply to YC</a>
| <a href="mailto:hn@ycombinator.com">Contact</a></span><br><br>
<form method="get" action="//hn.algolia.com/">Search:
<input type="text" name="q" value="" size="17" autocorrect="off"
spellcheck="false" autocapitalize="off" autocomplete="false">
</form>
</center>
</td>
</tr>
</table>
</center>
</body>
<script type='text/javascript' src='hn.js?tAF4tq9j2V6cVUuRar65'></script>
</html>
|