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
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2024-04-14 Sun 21:06 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>‎</title>
<meta name="author" content="Michał Sapka" />
<meta name="generator" content="Org Mode" />
<style>
#content { max-width: 60em; margin: auto; }
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #e6e6e6;
border-radius: 3px;
background-color: #f2f2f2;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
}
pre.src:before {
display: none;
position: absolute;
top: -8px;
right: 12px;
padding: 3px;
color: #555;
background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { }
</style>
</head>
<body>
<div id="content" class="content">
<div id="table-of-contents" role="doc-toc">
<h2>Table of Contents</h2>
<div id="text-table-of-contents" role="doc-toc">
<ul>
<li><a href="#org3433cb5">1. Brain rot   <span class="tag"><span class="_brainrot">@brainrot</span></span></a>
<ul>
<li><a href="#org81da251">1.1. Dune</a>
<ul>
<li><a href="#orgd90b413">1.1.1. <span class="done DONE">DONE</span> Dune</a></li>
<li><a href="#org4cd5b9b">1.1.2. <span class="done DONE">DONE</span> Dune: Part One (2021)</a></li>
</ul>
</li>
<li><a href="#org6f5aacf">1.2. Patlabor</a>
<ul>
<li><a href="#org7fe4da6">1.2.1. <span class="done DONE">DONE</span> Patlabor The Movie (1989)</a></li>
</ul>
</li>
<li><a href="#org4a0ffe7">1.3. Witcher</a>
<ul>
<li><a href="#orgd68996c">1.3.1. <span class="done DONE">DONE</span> Time of Contempt (1995)</a></li>
</ul>
</li>
<li><a href="#org5bbed13">1.4. Persona</a>
<ul>
<li><a href="#org65cd152">1.4.1. <span class="done DONE">DONE</span> Persona 5: Strikers (2020)</a></li>
</ul>
</li>
<li><a href="#orge3a483f">1.5. Lawnmower Man</a>
<ul>
<li><a href="#orga97397c">1.5.1. <span class="done DONE">DONE</span> Lawmower Man 2: Beyond Cyberspace (1996)</a></li>
<li><a href="#org943d0ad">1.5.2. <span class="done DONE">DONE</span> The Lawnmower Man (1992)</a></li>
</ul>
</li>
<li><a href="#orgbed2902">1.6. Discworld</a>
<ul>
<li><a href="#orge657205">1.6.1. <span class="done DONE">DONE</span> Interesting Times (1995)</a></li>
</ul>
</li>
<li><a href="#orge6a8a26">1.7. Random American SciFi movies</a>
<ul>
<li><a href="#org55f059f">1.7.1. <span class="done DONE">DONE</span> American SciFi movies</a></li>
<li><a href="#orge51f760">1.7.2. <span class="done DONE">DONE</span> Hardware (1990)</a></li>
<li><a href="#org7830552">1.7.3. <span class="done DONE">DONE</span> Ghost in the Machine (1993)</a></li>
<li><a href="#org642611a">1.7.4. <span class="done DONE">DONE</span> Colossus: The Forbin Project (1970)</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#org2b48426">2. REDIRECTS</a></li>
</ul>
</div>
</div>
<div id="outline-container-org3433cb5" class="outline-2">
<h2 id="org3433cb5"><span class="section-number-2">1.</span> Brain rot   <span class="tag"><span class="_brainrot">@brainrot</span></span></h2>
<div class="outline-text-2" id="text-1">
</div>
<div id="outline-container-org81da251" class="outline-3">
<h3 id="org81da251"><span class="section-number-3">1.1.</span> Dune</h3>
<div class="outline-text-3" id="text-1-1">
</div>
<div id="outline-container-orgd90b413" class="outline-4">
<h4 id="orgd90b413"><span class="section-number-4">1.1.1.</span> <span class="done DONE">DONE</span> Dune</h4>
<div class="outline-text-4" id="text-1-1-1">
<div class="img-r" id="org808e361">
<p>
Dune cover
</p>
</div>
<div class="menu" id="orgc315ce8">
<p>
Dune
</p>
</div>
<div class="menu-info" id="org6da0d53">
<p>
Dune
</p>
</div>
</div>
</div>
<div id="outline-container-org4cd5b9b" class="outline-4">
<h4 id="org4cd5b9b"><span class="section-number-4">1.1.2.</span> <span class="done DONE">DONE</span> Dune: Part One (2021)</h4>
<div class="outline-text-4" id="text-1-1-2">
<p>
I'd like to call myself a Dune fan, but I am not.
I have finished my Dune adventure on <i>Heretics</i> and only now am I planning to finish the saga<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
Though, I think this still puts me well above most people calling themselves fans now.
I loved eveything I've read, but I have never reached the end.
</p>
<p>
<i>Dune: Part 1</i> is the second movie based on the 1956 Frank Herbert's classic SciFi epic.
Well, it is not.
It is the third attempt to show the first half of the book.
There was the David Lynch verion (which I adore) and there was a TV Series.
There were also games, but only two of those have any resemblance to the plot of the book.
So yeah, Dune was considered impossible to transfer to any other medium.
Sadly, I still have to agree.
</p>
<p>
I think everybody (and their dogs) know what <i>Dune</i> is about but:
<i>Dune</i> is a story of distant future, where all powerful houses rule the known universe.
The technological progress was halted thousands of years ago, after a thinking machines raged a war against humanity.
After their defeat it was forbidden to create such machines.
Arrakis (aka Dune) is a sand planet, the only known source of <i>Spice</i> - a narcotic allowing humans to traverse time, and therefore spaceflight.
Spaceships are operated by mutated humans, who after exposure to Spice can see into the future and steer the ships.
Now, the Emperor orders the control of the planet to be shifted to th House of Atreides.
The previous stewards, House of Harkonen will not make it any easier.
</p>
<p>
Ignoring the mutants, this sounds like a run-of-the-mill SF series.
But <i>Dune</i> It is also story of social engineering spanning millennia, of false prophets, and a million other crazy things.
The first book keeps it <i>almost</i> sane, but there is a significant dictionary attached, and the first time reader will need to use it extensively.
Later the saga goes completely off the rails.
We'll get back to this.
</p>
<p>
Note, that <i>Frank Herbert</i> wrote only the first few books.
After his death, his son - <i>Brian Herbet</i> took over and wrote dozens of other ones.
The quality differs significantly, as I've been told.
I've read the <i>Houses</i> trilogy, and it was quite nice.
</p>
<p>
Now that we've got the introduction out of the way, let's go to the movie.
Let me start with saying that I adore it.
It's not what I'd want (as the young vloggers say "hear me out"), but at face value it's as close to perfect SF movie as they go.
</p>
<p>
<i>Dune: Part 1</i> is directed by Denis Vileneuve, who previously directed some of the greatest SF movies of this century - <i>Arrival</i> and <i>Blade Runner 2049</i>.
His other movies are also amazing (I can't recommend <i>Enemy</i> enough), so I was pretty stoked when it was announced that he will direct <i>Dune</i>.
I am no longer a movie buff<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>, but he may very well be my favorite living director.
</p>
<p>
Technically, I can not find any fault with the movie.
The story makes sense (I'll return to Lynch in a second), which by itself is an achievement.
The acting is superb, and works as a reminder that TV series are still not on the level of the greatest movies.
The special effects are astounding<sup><a id="fnr.3" class="footref" href="#fn.3" role="doc-backlink">3</a></sup>.
The music is, for the most part, at least great.
I hated the main theme with screaming lady.
Music is supposed to work with the movie, not to hide it with loud noises!
But that's the only thing I disliked.
</p>
<div class="img-c" id="org4b4946e">
<p>
Jessicas portrayal is amazing.
</p>
</div>
<div class="img-c" id="org4bd8c6e">
<p>
ALL costumes are amazing
</p>
</div>
<div class="img-c" id="org331c8e8">
<p>
CGI is amazing.
The movie looks amazing.
</p>
</div>
<div class="img-c" id="orgbd2cdf4">
<p>
Have mentioned how amazing this movie looks?
</p>
</div>
<p>
I loved the tempo of this movie, as I never enjoyed action-packed shoot fests of the <i>other franchise dominating cinema for decades</i>.
Everything is slow - the actors speak slowly, the scene have time to breath, the camera is moving on a low gear.
Even things fall down slowly!
This adds an amazing dream-like feeling to most scenes.
Sometimes I felt like I'm watching a <i>Tarkovsky</i> movie and not a big budget Hollywood blockbuster.
</p>
<p>
And this the greatest and worst thing here.
It's meditative.
You feel like yoy are in a trance.
You fully buy accept you see here.
</p>
<p>
But the world of Dune is weird.
It is full of things that make you go "huh?".
It has mutants who traverse time, but it also got mutants who are computers.
There are reanimated corpses, living furniture, hollow planets, vision quests.
Denis omitted everything that was not essential to the plot, and what he left, he grounded in reality by omitting the <i>wtf</i>.
There are not even the crazy names!
Some strange things he left, but they are shown without explanation.
It's just there, without any context.
But, to be fair - context would only add confusion.
</p>
<p>
But this is where <i>Lynchs</i> version shines.
It makes little sense, it is rushed - sure.
But it conveys how twisted the world is.
It's not a trace, it's a full on narcotic trip straight out of some hippie story.
</p>
<p>
And this is why I don't think that this movie is a <i>great</i> adaptation of Dune.
It is a <i>great</i> movie on its own.
It perfectly adapts the adaptable and pretends that there is nothing else.
It makes <i>Dune: Part 1</i> the hit that it is, and it allowed us to get <i>Part 2</i>.
But since making this move appeal to mass audience is not my problem, I'd like to see the full picture.
</p>
<p>
It'd also like to see the world less cold.
The architecture is devoid of heart, it's brutalistic.
It looks amazing (I think I mentioned that), but the crazy colors and abstract layouts we see in Lynch version is something else.
It's a Vileneuve style.
It looks exactly like his previous movies - it's controlled, clean, <i>cold</i>.
As much as I loved it in his other works, I'm not sure if it fits the degenerate houses we meet.
</p>
<p>
But that's just me.
As it stands, this is a groundbreaking movie which makes me want more.
Not only more of <i>Dune</i> but more of serious, intelligent SciFi movies.
We had those and may get more!
</p>
<p>
It's better in any conceivable way compared to all previous attempts at adapting the source material, and I think all my nitpicks are kina moot.
It fits 2024 esthetic and it's crazy intelligent.
</p>
<p>
Highest recommendation from me.
4.75/4
</p>
<p>
And, hey!
Sardukars no longer look like welders!
</p>
</div>
</div>
</div>
<div id="outline-container-org6f5aacf" class="outline-3">
<h3 id="org6f5aacf"><span class="section-number-3">1.2.</span> Patlabor</h3>
<div class="outline-text-3" id="text-1-2">
</div>
<div id="outline-container-org7fe4da6" class="outline-4">
<h4 id="org7fe4da6"><span class="section-number-4">1.2.1.</span> <span class="done DONE">DONE</span> Patlabor The Movie (1989)</h4>
<div class="outline-text-4" id="text-1-2-1">
<p>
There was a time when <i>Patlabor</i> was an established name.
It was huge, it had <i>Mamoru Oshii</i>.
Now, sadly, it's mostly forgotten.
</p>
<p>
<i>Patlabor: The Movie</i> is the first from the universe.
I'll cover the following two soon, as this is my rewatch after decades.
</p>
<p>
The story takes place in the distant future of 1999.
Manual labor is aided by Labors, huge exoskeletons.
Tokyo is undergoing a huge project, where old suburbs are demolished and artificial island are created on the coast.
Some Labors are going berserk, destroying everything on their paths despite being unmanned.
</p>
<div class="img-c" id="org67bb876">
<p>
Sucide is painless…
</p>
</div>
<div class="img-c" id="org9bf939c">
<p>
…It brings on many changes
</p>
</div>
<p>
Let's start with the visual feast.
The movie looks stunning!
Yes, later movies from IG top what we see here, and sometimes the faces may look weird.
It's not perfect.
But if we would simply tell ourselves that this style of animations is the peak and let's just try to maintain the quality, I'd be more than happy.
The way this 35-year-old movie looks is a testament to the power of manual drawings.
The design, the camera work, the coloring - I loved every second.
</p>
<p>
Another cute thing I've noticed: <i>The Movie</i> is an Oshii-type of movie.
It came in this short period, where <i>anime</i> was treating western culture as something alien and cool.
We're seeing this in Jin-Roh, Evangelion, GITS, and many others.
Here we've got the Bible.
</p>
<div class="img-c" id="org6cda558">
<p>
For a mecha anime, we've got a lot of people talking in different rooms
</p>
</div>
<p>
But this also shows the biggest problem of <i>Patlabor: The Movie</i>: it is shallow.
On surface level, we've got everything one could ever want: Unabomber-style genius on a quest to stop progress at all cost.
We're seeing how <i>old</i> is discarded in the name of progress.
We've also got a huge computer system which is maintained without deep understanding of how it works.
Basically, 1999 is like 2024.
But none of this is really developed.
The main characters never stop and think, that maybe the world is not going the best route?
Eiichi Hoba, the aforementioned Unabomber, is just a plot device: the viewer is also never confronted with his viewpoint.
</p>
<p>
As it stands, <i>The Movie's</i> story is disjointed:
on one side we've got the real and interesting question.
On the other, no one looks for answers and just accepts the risks of unconstrained growth.
But maybe this was the point?
We're seeing the same today: the world is ending, and most people are racing to be the last one to shut down the lights.
It is scary how believable this is.
Even the main threat is solved by a software rollback…
</p>
<p>
<i>Patlabor: The Movie</i> is good on its own, but it suffers from being the proto Ghost in the Shell.
It's not near as good, nor is it as good as its sequel.
But taking it at face value is really solid.
I had huge fun rewatching it, but left unsatisfied for sophisticated sociopsychological treat Oshii is known for.
</p>
<p>
My rating is 3.75/10
</p>
<div class="img-c" id="org5939a10">
<p>
Hav I mentioned thast this movie looks stunning?
</p>
</div>
<div class="img-c" id="org701e384">
<p>
S-T-U-N-N-I-N-G
</p>
</div>
<div class="img-c" id="orgafc7d83">
<p>
It always amazes me how many anime shows older guys in their undergarments.
I get, that Japan gets extremely hot during summer, but is it real that frequent?
</p>
</div>
<div class="img-c" id="org58bf72c">
<p>
One of many GITS-style scenes.
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-org4a0ffe7" class="outline-3">
<h3 id="org4a0ffe7"><span class="section-number-3">1.3.</span> Witcher</h3>
<div class="outline-text-3" id="text-1-3">
</div>
<div id="outline-container-orgd68996c" class="outline-4">
<h4 id="orgd68996c"><span class="section-number-4">1.3.1.</span> <span class="done DONE">DONE</span> Time of Contempt (1995)</h4>
<div class="outline-text-4" id="text-1-3-1">
<p>
It's a stain of my honor - I am a Pole, but I've never read The Saga.
It's not that I've never read any of The Witcher, but somehow I always stopped after the short stories.
Last year I've decided to finally fix this.
I am a proud nerd for crying out loud!
</p>
<div class="img-r" id="orgd0af9f1">
<p>
The classic cover
</p>
</div>
<p>
<i>Time of Contempt</i> is the second part of The Witcher Saga, but it's also the 4th book about Geralt and his world.
Let's ignore the short stories for a second and let's talk about this book in context of The Saga.
Here it suffers from being the middle child: Andrzej is developing the characters and story, but it lacks a impactful begging and an end.
I haven't felt like that after finishing the <i>Blood of Elves,</i> as it had a <i>begging</i> and the ending was emotional.
Geralt reunited with Ciri.
The story is clearly not over, but we have a kind of closure.
We know she is safe and ready for what's coming next.
</p>
<p>
Here?
Here we have no beginning as it follows the last book.
It was to be expected.
But I fail to notice anything new created here.
Yes, we've got <i>amazing</i> development of Ciri (I can't wait what how her blood heritage will screw over everyone), but nothing more.
It just moves from scene to scene<sup><a id="fnr.4" class="footref" href="#fn.4" role="doc-backlink">4</a></sup>, not spending any meaningful time anywhere.
After 300 pages of this, it ends with Ciri joining some random group.
I guess I will get to know them in <i>Baptism of Fire</i>, but I am not yet there.
Are they good?
Are they cool?
Who the hell they even are?
For me it was a huge let down.
</p>
<p>
But the biggest thing missing in The Saga is humour.
Both, <i>Sword of Destiny</i> and <i>Last Wish</i> were hilarious.
It was not on Pratchett's level of humor, but Geralt was amazing when it came to deadpan.
Moreover, I have no idea how well it translated to other languages, as it was based on Polish humour, but:
the books were written for Polish reader who was expected to know <i>Szewczyk Dratewka,</i> and therefore the way Geralt dealt with dragon was a funny refernce.
But this aspect is now completely missingm<sup><a id="fnr.5" class="footref" href="#fn.5" role="doc-backlink">5</a></sup>, but it was what made the short stories for me.
</p>
<p>
The biggest problem for me however was the fact I saw two seasons of The Witcher TV Series<sup><a id="fnr.6" class="footref" href="#fn.6" role="doc-backlink">6</a></sup>.
It was terrible and had nothing to do with the book (luckily for me!), but the TV versions of Ciri and Yennefer were irritating at best.
Their book counterparts are not like that - Ciri is extremely cool and Yen is, well, not so bad - but the visual image is etched in my brain.
I finally start to have a separate personnas for them, but it was difficult.
Yes, to some extent Netflix ruined the books for me.
</p>
<p>
I was never a fan of <i>fantasy</i>, as I always preferred <i>SciFi</i>.
Give me a blaster or give me death<sup><a id="fnr.7" class="footref" href="#fn.7" role="doc-backlink">7</a></sup>!
If I found <i>Time of Contempt</i> as a random book, I would not care for the rest of the series.
It was ok, but nothing to write home about.
Sapkowski has a great style and I very much want more, but he has not told anything interesting here.
I will continue reading The Witcher, but mostly because it <b>is</b> The Witcher.
</p>
<p>
I liked reading <i>Blood of Elves</i> much more.
</p>
<p>
I give it 3.5/5.
</p>
</div>
</div>
</div>
<div id="outline-container-org5bbed13" class="outline-3">
<h3 id="org5bbed13"><span class="section-number-3">1.4.</span> Persona</h3>
<div class="outline-text-3" id="text-1-4">
</div>
<div id="outline-container-org65cd152" class="outline-4">
<h4 id="org65cd152"><span class="section-number-4">1.4.1.</span> <span class="done DONE">DONE</span> Persona 5: Strikers (2020)</h4>
<div class="outline-text-4" id="text-1-4-1">
<p>
<i>Persona 5</i> took me close to a year… I think.
It was a gigantic game with unbelievable amount of dialogue.
It was also game I deeply enjoyed, despite not particularly liking anything about.
The story was ok, the gameplay was ok, the RPG element was ok, the dating was ok.
But, somehow, authors managed to join that into one freaking nice experience.
</p>
<p>
<i>Persona 5: Strikers</i> is none of those things.
It's a linear button masher with characters I like.
But it has <i>none</i> of the good elements of <i>P5</i>.
</p>
<p>
First, it's not an jRPG anymore.
When fight starts, you are presented with dozens of enemies you need to fight in real time.
Half of the time, I had no idea what was going on.
Fights, for me, are terrible.
Enemies were everywhere, and I had no <i>chance</i> to control the battlefield.
Lots of annoyances and finger pain, but no enjoyment.
Just running into random spots, bashing melee attacks and checking for weakness from time to time.
I play on easy and was tired of that very quickly, I can't imagine having any actual problems with this system you have no enjoyment with.
</p>
<div class="img-c" id="org2c8b4d1">
<p>
Guess the only way here is to shut my brain down, as it's useless in all this chaos.
</p>
</div>
<p>
The real-world activities are almost none-existent.
I loved how the Phantom Thieves bonded and became friends.
None of this here.
You've got some dialogue, but no payoff.
There is some stat related to bonding, but we all know each other.
In P5 the single best part was learning about each other and seeing how their lives improve.
None of that is here.
</p>
<p>
Dating?
None.
And my chosen love interest from <i>P5</i> doesn't even show up!
</p>
<p>
Extracurricular activities are limited to finding stuff on maps.
</p>
<p>
Getting to know Tokyo?
Nope. Every few hours we move to a new city.
</p>
<p>
Story? Well, I gave up before it started.
After 10 hours, midway through the third jail I gave up.
I had to guard Futaba <i>again</i> and after a moment became so frustrated and bored, that I stopped playing.
</p>
<p>
I give 2/5 for those 10 hours.
Maybe it gets better later on, but I don't care enough.
I dropped the game and will never return.
</p>
</div>
</div>
</div>
<div id="outline-container-orge3a483f" class="outline-3">
<h3 id="orge3a483f"><span class="section-number-3">1.5.</span> Lawnmower Man</h3>
<div class="outline-text-3" id="text-1-5">
</div>
<div id="outline-container-orga97397c" class="outline-4">
<h4 id="orga97397c"><span class="section-number-4">1.5.1.</span> <span class="done DONE">DONE</span> Lawmower Man 2: Beyond Cyberspace (1996)</h4>
<div class="outline-text-4" id="text-1-5-1">
<p>
Fun fact: I remembered close to nothing about this movie back.
When I was watching the first, everything seems familiar.
Here?
Not so much.
Guess <i>Polsat</i> consider the second one too expensive for regular broadcast.
</p>
<p>
In <i>Lawnmawer Man<sup><a id="fnr.8" class="footref" href="#fn.8" role="doc-backlink">8</a></sup></i> we meet Jobe, now a genius being living in the cyberspace.
But not so much, because in the first few minutes of <i>Lawmnower Man 2</i> we learn that he has not left his meatsuit for the cyberspace.
The explosion at the lab left him an amputee.
But his talents are now in use of the Evil Corporation designing the future of cyberspace.
</p>
<p>
Of course, Jobe wants the cyberspace for himself.
</p>
<p>
The general plot seems similar to the first one, but they are very much different.
The plot is much more complex, there are many more explosions and I think it makes much less sense than the first one.
I would rate it at 2/5.
</p>
<p>
But the biggest difference is that this movie is target towards certain audience.
<i>Lawmower Man</i> was a kid-friendly horror.
<i>Lawmower Man 2</i> is a kids' movie.
They completely removed the part which tried to be scary.
</p>
<p>
We've got bunch od kids (and a dog) fighting and winning against a grown-up.
Yes, they get the help from an adult - the creator of cyberspace.
But the main heroes are the kids.
And the main target are the kids.
</p>
<div class="img-c" id="org1373943">
<p>
Kids flying in cyberspace
</p>
</div>
<div class="img-c" id="org8fb5e0c">
<p>
And flying even more.
</p>
</div>
<div class="img-c" id="orgae0723e">
<p>
Dog preparing to save a day…
</p>
</div>
<div class="img-c" id="org3600579">
<p>
And saving the day by inserting a CD in the drive.
How can anyone consider this to be a movie for adoults?
</p>
</div>
<p>
I've read that the director was locked out of the editing room as he was trying to make a different movie.
The producers said a firm "no" and made <i>Lawmower Man 2</i> close to the likes of <i>Goonies</i>, <i>Explorers</i> or <i>Flight of the Navigator</i>.
It never reaches the coolness of those, but it tries.
A lot of people on the interweb bash the movie on logical problems or being goofy.
Yes - occasionally the plot makes so little sense that they needed to add voice over explaining why the hell the <i>gang</i> is going where they are going.
Yes, it has a dog who saves the day.
38 years old me was not amused, but the 10-year-old inside me screamed "yeah! Radical!".
He was not doing well with being <i>modern</i> back then as well.
</p>
<div class="img-c" id="orgf7558ee">
<p>
Her hair is the closest thing to a "scare" in the entire movie
</p>
</div>
<div class="img-c" id="orgbfe6688">
<p>
This hippie is the inventor of VR.
Tech geniuses leaving all the tech behind to live in the wild is now more real than ever
</p>
</div>
<p>
Jobe is being played by Matt Frewer, who quite often acts like Jim Carey, which is fitting.
He is not the magical-killer he used to be.
He is goofy.
</p>
<p>
Even the music sounds like something Spielberg would use.
</p>
<p>
There is no Pierce Brosnan here, as only Austin O'Brien returns from the first one, once again reprising the role of Peter Parkette.
</p>
<p>
My biggest gripe is the special effect here.
The movie takes place in the future, so we're no longer seeing green grass.
The real world vibe is close to <i>Blade Runner</i> or <i>Dark City</i>.
I dig it!
</p>
<div class="img-c" id="org7b8e1e1">
<p>
Cyberpunk!
I'm pretty sure that almost all those scenes happened on the same crossroad.
</p>
</div>
<div class="img-c" id="orgd3ef70b">
<p>
Almost Blade Runner.
</p>
</div>
<p>
But then there is the <i>cyberspace</i>.
In <i>Lawmower Man</i> we had amazing, early CGI closer to an acid trip than anything else.
Here, the cyberspace looks like ours.
They just added CGI here and there.
It looks like an episode of <i>The Next Generation</i>, but without most of the campiness.
For the most part it is competent, but there is no spark.
It's not <i>cool</i>.
</p>
<div class="img-c" id="orgc0d1365">
<p>
Our first meeting with new Jobe in the cyberspace.
Yes, this is VR-forest.
</p>
</div>
<div class="img-c" id="org5d4268e">
<p>
Cyberspace here give more of FMV-game kind of vibe than I would have expected
</p>
</div>
<div class="img-c" id="org662889a">
<p>
The VR here more social than what Apple showed.
</p>
</div>
<div class="img-c" id="orge9c78f6">
<p>
Luckily, sometimes the VR almost delivers.
</p>
</div>
<p>
But the 10-year-old me would not care.
He would rate it as 3.75/5 or "that was cool!".
But he he wasn't picky at all.
</p>
</div>
</div>
<div id="outline-container-org943d0ad" class="outline-4">
<h4 id="org943d0ad"><span class="section-number-4">1.5.2.</span> <span class="done DONE">DONE</span> The Lawnmower Man (1992)</h4>
<div class="outline-text-4" id="text-1-5-2">
<p>
Back in the glorious 90s, when kids still enjoyed linear TV, we had <i>Polsat</i>.
In the post-communist Poland, this was the first <i>western</i> TV station.
Filled with western movies, and western series<sup><a id="fnr.9" class="footref" href="#fn.9" role="doc-backlink">9</a></sup>
Among those, there were constant replays of <i>The Lawnmower Man</i><sup><a id="fnr.10" class="footref" href="#fn.10" role="doc-backlink">10</a></sup>
I watched it on every occasion and loved it.
</p>
<p>
Now, 30 years later it is time for a rewatch.
No cyberpunk deep dive can be considered a good one without <i>The Lawnmower Man</i>.
</p>
<p>
<i>The Lawnmower Man</i> is a movie about a disabled lawnmower man, Jobe, who, with the usage of virtual reality, becomes a genius.
Soon after, an Evil Company, stars secretly giving him drugs contracted by the military.
And as result, he starts exhibiting mind reading abilities and telekinesis (because, obviously, why not?).
We've got the (popular at the time) subtext about the dangers of corporates who, without supervision, play God.
Somehow we stopped doing that, and now we've got Altman killing humanity with the clap of happy crowd.
<i>Lawmower Man</i> is a movie about a great technology twisted by corporate overlords.
Fitting.
</p>
<p>
Jobe becomes a psychic, genius killer (like every mad genius), who decides to take over the cyberspace.
</p>
<div class="img-c" id="org437b000">
<p>
Remember when huge companies were scary?
</p>
</div>
<p>
The movie was initially released as a <i>Stephen King</i> movie.
King, however, sued the producers, as the movie has nothing to do the short story of the same name.
And he won, because it was based on original script called <i>CyberGod</i>.
Damn, I miss <i>cyber</i> sounding cool.
They should have the original name, instead of forcing King on everyone.
And yes, I know King was the king back then.
</p>
<div class="img-c" id="orgfd07778">
<p>
That's one way to save your neck from Apple Vision
</p>
</div>
<p>
The movie is we have here is a much dumbed down version of <i>Flowers for Algeron</i>, which I intend to finally read.
I don't think anyone ever called it a <i>good</i> movie, and for a good reason.
It's cool, it's got great cyberspace CGI, it's got Pierce Brosnan.
It also has an opening scene with a monkey using a gun, so yeah.
</p>
<p>
Story-wise is as straight forward as it gets.
The first half is full of sweet shots of grass and sexualization of a lawnmower.
And the most awkward sex scene I've seen in ages… or two.
Then, through a heavy-handed comment about religion and corporations we go the killing part.
</p>
<p>
This movie fails as horror (there is not even blood or any scare here), and fails as morality play (it's not smart enough).
But it is a testament to the glorious time, when <i>cyberspace</i> was magical and full of potential.
We sure deserve more of that.
</p>
<div class="img-c" id="org3cb386f">
<p>
The cyberspace we all need.
</p>
</div>
<p>
I give it a 3.0/5.
</p>
<p>
I was <b>sure</b> the ending of this film was from the sequel.
But nope - I don't remember anything from the second one.
Therefore, see you on the other side, <i>Beyond Cyberspace</i>.
</p>
<p>
If anything, it's a great movie to show everyone how amazing trackballs are.
And we all know it is a fact.
No one can tell me otherwise.
</p>
<div class="img-c" id="org98b920d">
<p>
The hidden star of the movie, right behind that hairy guy.
Look at that keyboard!
Look at how beige it is!
</p>
</div>
<div class="img-c" id="org2019a15">
<p>
Cyber God indeed.
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-orgbed2902" class="outline-3">
<h3 id="orgbed2902"><span class="section-number-3">1.6.</span> Discworld</h3>
<div class="outline-text-3" id="text-1-6">
</div>
<div id="outline-container-orge657205" class="outline-4">
<h4 id="orge657205"><span class="section-number-4">1.6.1.</span> <span class="done DONE">DONE</span> Interesting Times (1995)</h4>
<div class="outline-text-4" id="text-1-6-1">
<p>
Cover blurp:
</p>
<blockquote>
<p>
Mighty Battles! Revolution! Death! War! (and his sons Terror and Panic, and daughter Clancy).
</p>
<p>
The oldest and most inscrutable empire on the Discworld is in turmoil, brought about by the revolutionary treatise What I Did On My Holidays. Workers are uniting, with nothing to lose but their water buffaloes. Warlords are struggling for power. War (and Clancy) are spreading through the ancient cities.
</p>
<p>
And all that stands in the way of terrible doom for eveyone is:
</p>
<p>
Rincewind the Wizard, who can't even spell the word 'wizard' …
</p>
<p>
Cohen the barbarian hero, five foot tall in his surgical sandals, who has had a lifetime's experience of not dying …
</p>
<p>
…and a very special butterfly.
</p>
</blockquote>
<div class="img-r" id="org443e47d">
<p>
Cover
</p>
</div>
<p>
I am, what one could call, an old school <i>nerd</i>.
All I care about are old operating systems, ancient editors and old SCIFI<sup><a id="fnr.11" class="footref" href="#fn.11" role="doc-backlink">11</a></sup>
Ah, and some text based game where you are a cute "@".
<i>Of course</i> I like Pratchett.
</p>
<p>
I started reading him <i>years</i> ago in the only way acceptable - chronological<sup><a id="fnr.12" class="footref" href="#fn.12" role="doc-backlink">12</a></sup>.
And I had a few years long pause.
Now, after a series of reading <i>only</i> technical books I am returning to fiction.
</p>
<p>
<i><a href="https://www.terrypratchettbooks.com/books/interesting-times/">Interesting Times</a></i> is an ok-level Pratchett book.
It's not close to his best, it's not close to his worst<sup><a id="fnr.13" class="footref" href="#fn.13" role="doc-backlink">13</a></sup>.
</p>
<p>
This time Rincewind has to travel to Counterweight Continent and help a rebellion.
There he reconnects with old acquaintances - Twoflower, and Cohen to Barbarian.
</p>
<p>
The problem is that there is not much more.
We've got a lot of Chinese things, which is new.
But the story itself is extremely straight-forward.
Nothing memorable happens.
I finished it 2 days ago, and already I would have a problem recollecting any standing out moment.
I still remember moments from other <i>Discworld</i> books a decade after I read them!
</p>
<p>
But Terry's writing makes me not care and just enjoy the journey.
He is able to make a boring story interesting, and his characters are always great.
I was reading the book while putting my son to sleep, and I almost gave him a heart attack with a laughter attack.
This alone makes it worth it!
</p>
<p>
Not the best place to start with <i><i>Discworld</i></i> (the best is, of course, <i>Colour of Magic</i>) but as n-th book in the series it's very enjoyable.
</p>
<p>
I give it a <code>3.75/5</code>.
</p>
</div>
<ol class="org-ol">
<li><a id="orgd5506b4"></a>Meta<br />
<div class="outline-text-5" id="text-1-6-1-1">
<ul class="org-ul">
<li>Read as EPUB on Onyx Boox Note Air 2.</li>
<li>Read in Polish translation</li>
<li>Next up: back to Andrzej Sapkowski's with "Time of Contempt". I am not a good pole, having not read the entire saga. I promise to do it before my 40th birthday<sup><a id="fnr.14" class="footref" href="#fn.14" role="doc-backlink">14</a></sup></li>
</ul>
</div>
</li>
</ol>
</div>
</div>
<div id="outline-container-orge6a8a26" class="outline-3">
<h3 id="orge6a8a26"><span class="section-number-3">1.7.</span> Random American SciFi movies</h3>
<div class="outline-text-3" id="text-1-7">
</div>
<div id="outline-container-org55f059f" class="outline-4">
<h4 id="org55f059f"><span class="section-number-4">1.7.1.</span> <span class="done DONE">DONE</span> American SciFi movies</h4>
<div class="outline-text-4" id="text-1-7-1">
<div class="menu" id="orgb2d4e43">
<p>
Dune
</p>
</div>
<p>
#+begin<sub>menu</sub>-info
</p>
</div>
</div>
<div id="outline-container-orge51f760" class="outline-4">
<h4 id="orge51f760"><span class="section-number-4">1.7.2.</span> <span class="done DONE">DONE</span> Hardware (1990)</h4>
<div class="outline-text-4" id="text-1-7-2">
<p>
I ue my descend into American cyberpunk cinema<sup><a id="fnr.15" class="footref" href="#fn.15" role="doc-backlink">15</a></sup>.
I spent my formative years watching <i>Anime, art house</i> and ignoring most of USA movies.
This means I haven't watched a lot of the <i>cult</i> movies out there.
</p>
<p>
<i>Hardware</i> is a 1990 movie about a killer robot in a post-nuclear world.
Think of a mix of Terminator, Aliens and Short Circuit.
</p>
<p>
I heard of this movie years ago, but it seemed to be noting more than a cash grab after the success of <i>Terminator</i> - a movie which I don't partially enjoy.
After watching, I have to say that there was a of true in this assumption.
But somehow I ended enjoying <i>Hardware</i> much more.
</p>
<p>
Not that the story is better - if anything, it is much simpler, or just plain <i>simplistic</i>.
Say what you will about <i>Terminator</i>, but the basic premise was great.
<i>Hardware</i> on the other hand doesn't offer a great idea.
This is a straight movie about a killer robot.
</p>
<p>
However, I enjoyed it more, as it is much closer to what <i>Alien<sup><a id="fnr.16" class="footref" href="#fn.16" role="doc-backlink">16</a></sup></i> achieved
The entire action is encapsulated in only a few, closed locations.
Half of the runtime is spent in a single apartment, where the <i>Mark-13</i> robot shows up from to time a try to murder someone.
Much like the <i>Nostromo</i>!
</p>
<p>
This allowed the movie to be <b>stunning</b> visually.
I loved every frame here!
I know that most of the effect is based on fog and lighting, but I dig it!
Just take a look at the gallery below.
</p>
<p>
Another thing which reminded me of <i>Alien</i> is how they handled the special effects of the <i>monster</i>.
We see very little of <i>Mark-13</i> - he is often hard to see, covered in darkness.
From time to time we see his movements, and well.
Hiding him was clearly a good idea… just like with the <i>Xenomorph</i>.
</p>
<p>
All in all, I enjoyed the movie.
I'm not calling it one of my favorites, but I enjoyed every minute of its short runtime.
</p>
<p>
I give it a <code>3.5/5</code>.
</p>
<div class="img-c" id="orgdf74715">
<p>
Red sky of postnuclear… summer?
</p>
</div>
<div class="img-c" id="org2c89596">
<p>
The Nomad.
</p>
</div>
<div class="img-c" id="org9d587a1">
<p>
Nomad searching the desert for stuff for sale.
</p>
</div>
<div class="img-c" id="orgfb788bf">
<p>
An ordinary store.
Great vibes!
Fun for the whole family.
</p>
</div>
<div class="img-c" id="orga84e880">
<p>
Same store, different view.
</p>
</div>
<div class="img-c" id="orge82600c">
<p>
The perfect glasses.
</p>
</div>
<div class="img-c" id="org0899be2">
<p>
Seems like somene realy liked Jin-Roh.
</p>
</div>
<div class="img-c" id="org1291f9d">
<p>
What posses as art now.
</p>
</div>
<div class="img-c" id="orgc2591b7">
<p>
Computer we want but don't deserve.
</p>
</div>
<div class="img-c" id="orgd7d527f">
<p>
An art studio. Nothing out of the ordinary.
</p>
</div>
<div class="img-c" id="org90ad5cd">
<p>
Remember when spirituality was cool?
</p>
</div>
<div class="img-c" id="org2d4a95c">
<p>
Let's give our murder-robot eyes from a camera lense.
I'm sure no one will drop it.
</p>
</div>
<div class="img-c" id="orgfeda9f2">
<p>
UI we all want.
</p>
</div>
<div class="img-c" id="org3c882f2">
<p>
What lurks in the shadows.
</p>
</div>
<div class="img-c" id="orgc72a5fa">
<p>
Yup, Jin-Roh.
</p>
</div>
<div class="img-c" id="orgeea84ba">
<p>
Yankee-Roh.
</p>
</div>
<div class="img-c" id="org007f427">
<p>
With some striking shadows.
</p>
</div>
<div class="img-c" id="orgd731055">
<p>
I have become bread, the destroyer of worlds.
</p>
</div>
<div class="img-c" id="orgdd968ea">
<p>
Prelude…
</p>
</div>
<div class="img-c" id="orgcd9825f">
<p>
And the (most likely) last usage of a refrigerator as a safe place which makes any sense in the history of cinema.
</p>
</div>
<div class="img-c" id="orgc411859">
<p>
Yup, a hand.
</p>
</div>
<div class="img-c" id="orgaecaa63">
<p>
Hold the presses!
The glasses are back!
I repeat: the glasses are back.
</p>
</div>
<div class="img-c" id="orgacd4c63">
<p>
Mark-13 in all of its glory.
</p>
</div>
<div class="img-c" id="orge173459">
<p>
This is only a window, but what a window it is.
</p>
</div>
<div class="img-c" id="org98bdd5c">
<p>
They have not used Wilhelm's scream.
What a wasted opportunity.
</p>
</div>
<div class="img-c" id="orge31f16c">
<p>
In 2024 those are rookie number when it comes to unnecessary lights inside a computer.
</p>
</div>
<div class="img-c" id="orgf88fa0b">
<p>
I am a sucker for this type of fish eye.
Always reminds me of <i>City of Lost Children.</i>
</p>
</div>
<div class="img-c" id="org68f139f">
<p>
It doesn't get more era-apporiate than this.
</p>
</div>
<div class="img-c" id="org8ad7a3e">
<p>
Ok, it does.
</p>
</div>
<div class="img-c" id="orgbc430ed">
<p>
One of the few CGI moments here.
</p>
</div>
<div class="img-c" id="org13910db">
<p>
And one of <i>many</i> lighting shots.
</p>
</div>
<div class="img-c" id="org46c99b3">
<p>
Look how black it is. Classy.
</p>
</div>
<div class="img-c" id="orgedaced9">
<p>
But does it run Quake?
</p>
</div>
<div class="img-c" id="org8b0a9d0">
<p>
Back to the desert, like a fine sandwich.
</p>
</div>
<p>
And a few nice <i>gore</i> sceenes which I won't show it.
This is a family-friendly website!
</p>
<p>
Links:
</p>
<ul class="org-ul">
<li><a href="https://thetvdb.com/movies/hardware">Hardware on TVDB</a></li>
<li><a href="https://www.theofficialrichardstanley.com/">Director's official website</a></li>
</ul>
</div>
</div>
<div id="outline-container-org7830552" class="outline-4">
<h4 id="org7830552"><span class="section-number-4">1.7.3.</span> <span class="done DONE">DONE</span> Ghost in the Machine (1993)</h4>
<div class="outline-text-4" id="text-1-7-3">
<p>
Talk about a surprise!
I was expecting a <i>schlock</i>, but I've seen a nice move.
A dumb one, but still.
</p>
<p>
The plot is the biggest problem: a serial killer has an MRI and due to electric storm gets his soul moved to computer network.
With this, he becomes able to:
</p>
<ul class="org-ul">
<li>kill person by moving to a microwave and changing its settings,</li>
<li>kill a dog by arousing it with a TV program (using nothing by electric breakers), then hitting the dog with a VHS tape ejected from a VHS player which causes the animal to run towards the pool</li>
</ul>
<div class="img-r" id="org7216f2c">
<p>
Cover
</p>
</div>
<p>
It makes as little sense in the context of the movie as it does here.
But the acting is (at the very least) acceptable and the FX are better than they should - and there is a lot of them.
Moreover, the camera work is crazy!
The movie <i>looks</i> better than it should.
It seems that this dumb, little movie got more passion in it than the entire MCU combined.
</p>
<p>
The problem is that I have no idea what was going on.
People were dying, cool computer interfaces were shown, but the plot barely connected those scenes together.
</p>
<p>
It's a classic thriller from early days of personal computing revolution.
I enjoyed it a lot.
It is not a <i>good</i> movie, but it is enjoyable.
</p>
<p>
I give it a <code>3.0/5.</code>
</p>
<p>
links:
</p>
<ul class="org-ul">
<li><a href="https://utf.thetvdb.com/movies/ghost-in-the-machine">Ghost in the Machine on TVDB</a></li>
</ul>
</div>
</div>
<div id="outline-container-org642611a" class="outline-4">
<h4 id="org642611a"><span class="section-number-4">1.7.4.</span> <span class="done DONE">DONE</span> Colossus: The Forbin Project (1970)</h4>
<div class="outline-text-4" id="text-1-7-4">
<p>
Finally, in my series of discovering the roots of cyberpunk in American Cyberpunk I've seen a real gem.
</p>
<p>
<i>Colossus</i> is a 1970 movie about a not-so-distant-future where Americans decide that it would be a great idea to give control of their military potential to a computer.
On paper, it sounds great - a computer has no emotions, so it will not be stopped by petty things, like morality.
Guess how well that turned out?
Soon after switching on, Colossus learns about the existence of another such system - The Guardian, in the territory of CCCP.
</p>
<div class="img-c" id="org9cad79c">
<p>
The movie starts with sexy old-comp scenes.
Fitting, as Control Data Corporation supplied close to 5 million USD in computer equipment.
</p>
</div>
<div class="img-c" id="orga90d063">
<p>
Sexy!
Rest of the movie is not as sexy.
</p>
</div>
<div class="img-c" id="orgdca0d6f">
<p>
Colossus in person.
</p>
</div>
<p>
And then this SciFi thriller stops being so <i>crazy-computer</i> focused, and analyzes <i>crazy-human</i> reaction.
Colossus starts exhibiting features which were never implemented.
It<sup><a id="fnr.17" class="footref" href="#fn.17" role="doc-backlink">17</a></sup> starts <i>demanding</i> to be connected with the Guardian, so they can communicate.
And the scientist decide that it would be a great idea.
The computers start exchanging data and developing language.
Still - looks cool, let's see what happens.
Only after Colossus threatens humans with ICBMs, Forbin (Colossus's creator) starts thinking that maybe this wasn't the best idea.
</p>
<div class="img-c" id="org8be9690">
<p>
At first Colossus communicates only via text.
Funny, as those screens sound like matrix printers.
</p>
</div>
<div class="img-c" id="orgfbc3ef6">
<p>
This one as well.
</p>
</div>
<div class="img-c" id="orge3bcf43">
<p>
Because it has a printer!
It took me half of the movie to get that.
Guess I'm too millenial for that to be obvious.
</p>
</div>
<p>
The movie is often described as an evil-computer story.
Colossus is never evil in the movie.
It does exactly what it was designed to do - to act without mercy.
The evil ones here are the humans who never stop and think that maybe we are on the verge of the end of humanity.
</p>
<p>
So yeah, it's an movie about Altman.
We may have destroyed the civilization, but at lest we made a cool program which does things.
No one know what those things are, but those are details you should not worry about.
</p>
<p>
Story wise, <i>Colossus: The Forbin Project</i> holds splendidly.
Yes, we've got casual alcoholism and the female character exists only to have sex with Forbin<sup><a id="fnr.18" class="footref" href="#fn.18" role="doc-backlink">18</a></sup>.
But the actual meat of the movie could be a base of an amazing movie today.
The questions and subject are more relevant now that half a century ago.
What was a huge <i>what-if</i> scenario becomes a real <i>ok, but how do we stop it</i>.
The Pentagon is already working on militarization of AI<sup><a id="fnr.19" class="footref" href="#fn.19" role="doc-backlink">19</a></sup>.
We're pretty much screwed already.
</p>
<p>
The best SciFi is not about giant battles or space travel for space travel sake.
It's always about humans, a warning for us.
And the <i>best</i> SciFi is a warning for the next generations, as the threads become more real as years go by.
</p>
<p>
There is a moment in the movie, where the entire day of Forbin is planned and monitored by an AI.
What was a horror story, is now what a lot of us <i>expect</i>.
</p>
<p>
<i>Colossus</i> in a movie version of earlier book of same.
There are 2 more in the series, and (as I've been told), Aliens make an appearance later on.
Maybe someday!
</p>
<p>
As for the movie, I give it a 4.25/5.
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-org2b48426" class="outline-2">
<h2 id="org2b48426"><span class="section-number-2">2.</span> REDIRECTS</h2>
<div class="outline-text-2" id="text-2">
<p>
location "<i><i>blog/patlabor-the-movie</i></i>" { block return 301 "<i>brain-rot/patlabor/patlabor-the-movie</i> }
location "<i>blog/2024/andrzej-sapkowskis-time-of-contempt/</i>" { block return 301 "<i>brain-rot/witcher/andrzej-sapkowskis-time-of-contempt</i> }
location "<i>blog/2024/persona-5-strikers/</i>" { block return 301 "<i>brain-rot/persona/persona-5-strikers</i> }
location "<i>blog/2024/colossus-1970/</i>" { block return 301 "<i>brain-rot/colossus-1970</i> }
location "<i>blog/2024/lawmower-man-2-1996/</i>" { block return 301 "<i>brain-rot/lawnmower-man/lawmower-man-2-1996</i> }
location "<i>blog/2024/lawmower-man-1992/</i>" { block return 301 "<i>brain-rot/witcher/andrzej-sapkowskis-time-of-contempt</i> }
location "<i>blog/2024/hardware-1990/</i>" { block return 301 "<i>brain-rot/hardware-1990</i> }
location "<i>blog/2024/interesting-times/</i>" { block return 301 "<i>brain-rot/discworld/interesting-times</i> }
location "blog/2024/ghost-in-the-machine/" { block return 301 "<i>brain-rot/ghost-in-the-machine</i> }
</p>
</div>
</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes: </h2>
<div id="text-footnotes">
<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Right after finishing the Witcher saga.
</p></div></div>
<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
not to brag, but I was a semiprofessional film critic during college years.
I had a press pass and all!
</p></div></div>
<div class="footdef"><sup><a id="fn.3" class="footnum" href="#fnr.3" role="doc-backlink">3</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Ornititopthers look just like in the <i>Dune</i> game!
This strangely works with how believable everything is.
All flying ships have this strange physics, which I have hard time explaining.
They are not like you X-Wings, but they fit the world.
</p></div></div>
<div class="footdef"><sup><a id="fn.4" class="footnum" href="#fnr.4" role="doc-backlink">4</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
… <i>No one had a chance to interrupt</i>.
<i>It was really quite hypnotic</i>.
</p></div></div>
<div class="footdef"><sup><a id="fn.5" class="footnum" href="#fnr.5" role="doc-backlink">5</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
We've got <b>huge</b> reference to <i>Enemy Mine</i> in the single best part of the book, but it's not funny at all.
Sad, scary - sure; but not funny. Just like the movie.
</p></div></div>
<div class="footdef"><sup><a id="fn.6" class="footnum" href="#fnr.6" role="doc-backlink">6</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
And not an episode more.
It was already too much.
</p></div></div>
<div class="footdef"><sup><a id="fn.7" class="footnum" href="#fnr.7" role="doc-backlink">7</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
If you get the refence know, that I am no longer that type of a person.
</p></div></div>
<div class="footdef"><sup><a id="fn.8" class="footnum" href="#fnr.8" role="doc-backlink">8</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Vide: <a href="file:///blog/2024/lawmower-man-1229/">my review of Lawmower Man</a>.
</p></div></div>
<div class="footdef"><sup><a id="fn.9" class="footnum" href="#fnr.9" role="doc-backlink">9</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
And Polish version of those.
We had a great copy of <i>The Honeymooners</i> named <i>Miodowe Lata</i>.
The translation of the title is surprisingly spot-on.
</p></div></div>
<div class="footdef"><sup><a id="fn.10" class="footnum" href="#fnr.10" role="doc-backlink">10</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Under an amazingly translated title, which would translate back as <i>The Lawmower Man of Minds</i>.
Perfection.
We knew <i>Dirty Dancing</i> as <i>Spinning Sex</i> and <i>Die Hard</i> as <i>Glass Trap</i>.
Those were simpler times.
</p></div></div>
<div class="footdef"><sup><a id="fn.11" class="footnum" href="#fnr.11" role="doc-backlink">11</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
And manga&anime, but that's beside the point.
Not American comics though.
Never cared about those, and it seems I never will.
</p></div></div>
<div class="footdef"><sup><a id="fn.12" class="footnum" href="#fnr.12" role="doc-backlink">12</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
It's ok to disagree, just like it's ok to be wrong.
</p></div></div>
<div class="footdef"><sup><a id="fn.13" class="footnum" href="#fnr.13" role="doc-backlink">13</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Being a bad Pratchett's book still means being a very good one.
Most authors would love to reach the level of one of those at least once.
</p></div></div>
<div class="footdef"><sup><a id="fn.14" class="footnum" href="#fnr.14" role="doc-backlink">14</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Which is closer that I expected
</p></div></div>
<div class="footdef"><sup><a id="fn.15" class="footnum" href="#fnr.15" role="doc-backlink">15</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I disagree with calling those movies "cyberpunk" as they lack the "punk" element… or most of "cyber".
No one rebels against the system, no one enters the <i>cyberspace</i>.
But following this definition, I am not sure if we can call any movie other than <i>Johny Menomic</i> a <i>Cyberpunk</i>.
Often we put all dark-sf into "cyberpunk" genre, which limits our ability to be pricks about it.
</p></div></div>
<div class="footdef"><sup><a id="fn.16" class="footnum" href="#fnr.16" role="doc-backlink">16</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Aka "the clearly superior of the <i>Alien</i> series"
</p></div></div>
<div class="footdef"><sup><a id="fn.17" class="footnum" href="#fnr.17" role="doc-backlink">17</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
There's an interesting discussion about what pronoum to use - He or It.
</p></div></div>
<div class="footdef"><sup><a id="fn.18" class="footnum" href="#fnr.18" role="doc-backlink">18</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
It is a plot point!
A terrible one, but still.
</p></div></div>
<div class="footdef"><sup><a id="fn.19" class="footnum" href="#fnr.19" role="doc-backlink">19</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Vide: <a href="https://www.defense.gov/News/News-Stories/Article/Article/3682355/pentagon-official-lays-out-dod-vision-for-ai/">Pentagon Official Lays Out DOD Vision for AI</a>.
Note, it's from the official website of US Department of Defense.
</p></div></div>
</div>
</div></div>
<div id="postamble" class="status">
<p class="author">Author: Michał Sapka</p>
<p class="date">Created: 2024-04-14 Sun 21:06</p>
<p class="validation"><a href="https://validator.w3.org/check?uri=referer">Validate</a></p>
</div>
</body>
</html>
|