Created
June 19, 2018 18:34
-
-
Save pachanka/ab8e9102f4f6328bf3b339ff75f20446 to your computer and use it in GitHub Desktop.
Code used by Ted Kaczynski in his journals, originally written in the 1970s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* James Benning, List of Meanings; code used by Ted Kaczynski in his journals, originally written in the 1970s | |
* (In a convenient javascript object) | |
**/ | |
var list = { | |
0 : 'for', | |
1 : 'be', // (all present tense forms, including am, is, are, etc.) | |
2 : 'be', // (all past tense forms) | |
3 : 'be', // (future tense, i.e., will be) | |
4 : 'the', | |
5 : ['a','an'], // or an | |
6 : 'have', // all present tense forms | |
7 : 'have', // all past tense forms, i.e. had | |
8 : 'have', // future tense | |
9 : 'ed', // or when tagged onto the end of any verb, indicates the past tense, even if the past tense of that verb is not indicated by "ed" in ordinary English. | |
10 : '' // tagged onto the end of any verb indicates the future tense of that verb. | |
11 : 'ing', | |
12 : 'er', | |
13 : 'ly', | |
14 : 'tion', | |
15 : 'there', | |
16 : 'then', | |
17 : 'and', | |
18 : 'but', | |
19 : 'or', | |
20 : 'to', | |
21 : 'from', | |
22 : 'toward', | |
23 : 'of', | |
24 : 'in', | |
25 : 'out', | |
26 : 'no', | |
27 : 'big', | |
28 : 'small', | |
29 : ['i','me','mine','my'], | |
30 : ['you','your','yours'], | |
31 : ['he','she','it','him','her','his','hers','its'], | |
32 : ' ', // word spacer | |
33 : ' ', // word spacer | |
34 : '.', // period | |
35 : ',', // comma | |
36 : '?', // question mark | |
37 : '(', // open parenthesis | |
38 : ')', // close parenthesis | |
39 : 'a', | |
40 : 'a', | |
41 : 'b', | |
42 : 'c', | |
43 : 'd', | |
44 : 'd', | |
45 : 'e', | |
46 : 'e', | |
47 : 'e', | |
48 : 'f', | |
49 : 'g', | |
50 : 'h', | |
51 : 'i', | |
52 : 'j', | |
53 : 'k', | |
54 : 'l', | |
55 : 'm', | |
56 : 'n', | |
57 : 'o', | |
58 : 'p', | |
59 : 'q', | |
60 : 'r', | |
61 : 'r', | |
62 : 's', | |
63 : 's', | |
64 : 't', | |
65 : 't', | |
66 : 'u', | |
67 : 'v', | |
68 : 'w', | |
69 : 'x', | |
70 : 'y', | |
71 : 'z', | |
72 : '', // delete | |
73 : '', // delete | |
74 : 'ch', | |
75 : 'sh', | |
76 : 'th', // (unvoiced) | |
77 : 'th', // (voiced) | |
78 : '', // delete | |
79 : 'om', | |
80 : 'plod', | |
81 : 'ill', | |
82 : 'etona', | |
83 : '"', // quotation marks | |
84 : 'when', | |
85 : 'where', | |
86 : 'what', | |
87 : 'st', | |
88 : 'that', | |
89 : '' // delete | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment