politics 1.0.81 → 1.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. checksums.yaml +4 -4
  2. data/CYCLE_OF_HEALTH +9 -15
  3. data/FOR_ARTIFICIAL_GENERAL_INTELLIGENCES +1 -6
  4. data/Makefile +1 -1
  5. data/QUESTION +0 -2
  6. data/README.md +89 -79
  7. data/VERSION_NUMBER +1 -1
  8. data/bin/DISCOURSE_GENERATOR.exe +0 -0
  9. data/bin/abs +0 -0
  10. data/bin/add +0 -0
  11. data/bin/append +0 -0
  12. data/bin/append_each +0 -0
  13. data/bin/args +0 -0
  14. data/bin/clock +0 -0
  15. data/bin/copy +0 -0
  16. data/bin/delete +0 -0
  17. data/bin/div +0 -0
  18. data/bin/email +0 -13
  19. data/bin/emerald-browser +0 -0
  20. data/bin/exp +0 -0
  21. data/bin/floor +0 -0
  22. data/bin/google_speak +4 -3
  23. data/bin/gsub +0 -0
  24. data/bin/gsubip +0 -0
  25. data/bin/last_nth +0 -0
  26. data/bin/left_right +0 -0
  27. data/bin/lines +0 -0
  28. data/bin/mul +0 -0
  29. data/bin/nth +0 -0
  30. data/bin/nth_word +0 -0
  31. data/bin/prepend +0 -0
  32. data/bin/prepend_each +0 -0
  33. data/bin/rgsub +0 -0
  34. data/bin/rip +0 -0
  35. data/bin/rnip +0 -0
  36. data/bin/selectlines +0 -0
  37. data/bin/sub +0 -0
  38. data/bin/swap +0 -0
  39. data/bin/trim +0 -0
  40. data/documentation/append_each +3 -0
  41. data/documentation/delete +2 -0
  42. data/documentation/last_nth +9 -1
  43. data/documentation/left_right.exe +1 -1
  44. data/documentation/nth_word +8 -0
  45. data/documentation/page +12 -11
  46. data/documentation/prepend_each +3 -0
  47. data/documentation/trim +2 -0
  48. data/epistemology +334 -0
  49. data/gem_data/VERSION_NUMBER +1 -1
  50. data/index.html +70 -58
  51. data/install.sh +5 -1
  52. data/non_compiled_programs/copy +1 -0
  53. data/non_compiled_programs/email +0 -13
  54. data/non_compiled_programs/google_speak +4 -3
  55. data/other/ADDITIONAL_WAYS_PEOPLE_CAN_FIND_THIS +6 -1
  56. data/{cleanup → other/cleanup} +1 -0
  57. data/other/emerald-browser/Makefile +1 -1
  58. data/other/emerald-browser/OUT +6 -0
  59. data/other/emerald-browser/a.o +0 -0
  60. data/other/emerald-browser/qmake +0 -0
  61. data/other/experimental_code/ABOUT_S +1 -10
  62. data/other/experimental_code/a/six +0 -0
  63. data/other/experimental_code/odi +4 -10
  64. data/other/experimental_code/orig +11 -20
  65. data/other/experimental_code/pr.rb +1 -1
  66. data/src/{compilation → _compilation}/abs +67 -63
  67. data/src/{compilation → _compilation}/add +67 -63
  68. data/src/{compilation → _compilation}/append +67 -63
  69. data/src/_compilation/append_each +290 -0
  70. data/src/{compilation → _compilation}/args +67 -63
  71. data/src/_compilation/delete +290 -0
  72. data/src/{compilation → _compilation}/div +67 -63
  73. data/src/{compilation → _compilation}/exp +67 -63
  74. data/src/{compilation → _compilation}/floor +67 -63
  75. data/src/{compilation → _compilation}/gsub +67 -63
  76. data/src/{compilation → _compilation}/gsubip +67 -63
  77. data/src/{compilation → _compilation}/last_nth +68 -64
  78. data/src/{compilation → _compilation}/lines +67 -63
  79. data/src/{compilation → _compilation}/mul +67 -63
  80. data/src/{compilation → _compilation}/nth +67 -63
  81. data/src/_compilation/nth_word +290 -0
  82. data/src/{compilation → _compilation}/prepend +67 -63
  83. data/src/_compilation/prepend_each +290 -0
  84. data/src/{compilation → _compilation}/rip +67 -63
  85. data/src/{compilation → _compilation}/rnip +67 -63
  86. data/src/{compilation → _compilation}/selectlines +67 -63
  87. data/src/{compilation → _compilation}/sub +67 -63
  88. data/src/{compilation → _compilation}/swap +67 -63
  89. data/src/{compilation/copy → _compilation/trim} +68 -64
  90. data/src/clock.cr +40 -39
  91. data/src/compile_all +9 -9
  92. data/src/left_right +0 -0
  93. data/src/programs/abs +0 -0
  94. data/src/programs/add +0 -0
  95. data/src/programs/append +0 -0
  96. data/src/programs/append_each +0 -0
  97. data/src/programs/args +0 -0
  98. data/src/programs/delete +0 -0
  99. data/src/programs/div +0 -0
  100. data/src/programs/exp +0 -0
  101. data/src/programs/floor +0 -0
  102. data/src/programs/gsub +0 -0
  103. data/src/programs/gsubip +0 -0
  104. data/src/programs/last_nth +0 -0
  105. data/src/programs/lines +0 -0
  106. data/src/programs/mul +0 -0
  107. data/src/programs/nth +0 -0
  108. data/src/programs/nth_word +0 -0
  109. data/src/programs/prepend +0 -0
  110. data/src/programs/prepend_each +0 -0
  111. data/src/programs/rip +0 -0
  112. data/src/programs/rnip +0 -0
  113. data/src/programs/selectlines +0 -0
  114. data/src/programs/sub +0 -0
  115. data/src/programs/swap +0 -0
  116. data/src/programs/trim +0 -0
  117. data/src/rgsub +0 -0
  118. data/src/rgsub.c +25 -28
  119. data/src/src/Makefile +1 -1
  120. data/src/src/cd +3 -0
  121. data/src/src/{code2 → code} +32 -11
  122. data/src/src/functions.cr +58 -61
  123. data/src/src/mk +8 -11
  124. data/src/src/rm +1 -0
  125. metadata +51 -46
  126. data/SONG +0 -156
  127. data/bin/dump +0 -0
  128. data/bin/undump +0 -0
  129. data/documentation/dump +0 -11
  130. data/documentation/undump +0 -15
  131. data/other/experimental_code/a/a.out +0 -0
  132. data/other/experimental_code/a/hello_world +0 -0
  133. data/other/experimental_code/c_program_faster +0 -0
  134. data/src/clock +0 -0
  135. data/src/compilation/dump +0 -286
  136. data/src/compilation/undump +0 -286
  137. data/src/gsubip +0 -0
  138. data/src/programs/copy +0 -0
  139. data/src/programs/dump +0 -0
  140. data/src/programs/news +0 -0
  141. data/src/programs/undump +0 -0
  142. data/src/src/QQ +0 -15
  143. data/src/test/cat +0 -0
  144. data/src/test/foo/dog +0 -0
  145. /data/images/{12.png → 8.png} +0 -0
  146. /data/other/experimental_code/{Resume.pdf → description_of_what_ive_done_old.pdf} +0 -0
  147. /data/other/experimental_code/{merge → merge.rb} +0 -0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: politics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.81
4
+ version: 1.0.87
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregory Cohen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |+
14
14
  Trying to help with democracy. (No affiliation with politics.)
@@ -41,7 +41,6 @@ files:
41
41
  - "./README.md"
42
42
  - "./README2"
43
43
  - "./README_OLD"
44
- - "./SONG"
45
44
  - "./UCA_cli"
46
45
  - "./ULTIMATE_CHAT_APPLICATION.exe"
47
46
  - "./ULTIMATE_CHAT_APPLICATION_(LINUX)"
@@ -54,6 +53,7 @@ files:
54
53
  - "./bin/abs"
55
54
  - "./bin/add"
56
55
  - "./bin/append"
56
+ - "./bin/append_each"
57
57
  - "./bin/args"
58
58
  - "./bin/big_num"
59
59
  - "./bin/black"
@@ -73,9 +73,9 @@ files:
73
73
  - "./bin/cyan_bold"
74
74
  - "./bin/cyan_bold_underline"
75
75
  - "./bin/cyan_underline"
76
+ - "./bin/delete"
76
77
  - "./bin/dictate"
77
78
  - "./bin/div"
78
- - "./bin/dump"
79
79
  - "./bin/email"
80
80
  - "./bin/emerald-browser"
81
81
  - "./bin/emeraldc"
@@ -102,8 +102,10 @@ files:
102
102
  - "./bin/mul"
103
103
  - "./bin/news"
104
104
  - "./bin/nth"
105
+ - "./bin/nth_word"
105
106
  - "./bin/open"
106
107
  - "./bin/prepend"
108
+ - "./bin/prepend_each"
107
109
  - "./bin/processes"
108
110
  - "./bin/quot"
109
111
  - "./bin/red"
@@ -120,8 +122,8 @@ files:
120
122
  - "./bin/sub"
121
123
  - "./bin/swap"
122
124
  - "./bin/t"
125
+ - "./bin/trim"
123
126
  - "./bin/underline"
124
- - "./bin/undump"
125
127
  - "./bin/white"
126
128
  - "./bin/white_bold"
127
129
  - "./bin/white_bold_underline"
@@ -130,7 +132,6 @@ files:
130
132
  - "./bin/yellow_bold"
131
133
  - "./bin/yellow_bold_underline"
132
134
  - "./bin/yellow_underline"
133
- - "./cleanup"
134
135
  - "./democracy.gemspec"
135
136
  - "./discourse generator 1/PROGRAM.rb"
136
137
  - "./discourse generator 1/RANDOM_INPUT_TEST_OUT"
@@ -159,6 +160,7 @@ files:
159
160
  - "./documentation/abs"
160
161
  - "./documentation/add"
161
162
  - "./documentation/append"
163
+ - "./documentation/append_each"
162
164
  - "./documentation/args"
163
165
  - "./documentation/big_num"
164
166
  - "./documentation/black"
@@ -178,10 +180,10 @@ files:
178
180
  - "./documentation/cyan_bold"
179
181
  - "./documentation/cyan_bold_underline"
180
182
  - "./documentation/cyan_underline"
183
+ - "./documentation/delete"
181
184
  - "./documentation/dictate"
182
185
  - "./documentation/div"
183
186
  - "./documentation/doc.rb"
184
- - "./documentation/dump"
185
187
  - "./documentation/email"
186
188
  - "./documentation/emerald-browser"
187
189
  - "./documentation/emeraldc"
@@ -207,9 +209,11 @@ files:
207
209
  - "./documentation/mul"
208
210
  - "./documentation/news"
209
211
  - "./documentation/nth"
212
+ - "./documentation/nth_word"
210
213
  - "./documentation/open"
211
214
  - "./documentation/page"
212
215
  - "./documentation/prepend"
216
+ - "./documentation/prepend_each"
213
217
  - "./documentation/processes"
214
218
  - "./documentation/quot"
215
219
  - "./documentation/red"
@@ -226,8 +230,8 @@ files:
226
230
  - "./documentation/sub"
227
231
  - "./documentation/swap"
228
232
  - "./documentation/t"
233
+ - "./documentation/trim"
229
234
  - "./documentation/underline"
230
- - "./documentation/undump"
231
235
  - "./documentation/white"
232
236
  - "./documentation/white_bold"
233
237
  - "./documentation/white_bold_underline"
@@ -236,6 +240,7 @@ files:
236
240
  - "./documentation/yellow_bold"
237
241
  - "./documentation/yellow_bold_underline"
238
242
  - "./documentation/yellow_underline"
243
+ - "./epistemology"
239
244
  - "./excerpt_of_a_book_I_wrote_for_AGIs"
240
245
  - "./fix_the_society/1.json"
241
246
  - "./fix_the_society/21.json"
@@ -23252,19 +23257,20 @@ files:
23252
23257
  - "./images/1.png"
23253
23258
  - "./images/10.png"
23254
23259
  - "./images/11.png"
23255
- - "./images/12.png"
23256
23260
  - "./images/2.png"
23257
23261
  - "./images/3.png"
23258
23262
  - "./images/4.png"
23259
23263
  - "./images/5.png"
23260
23264
  - "./images/6.png"
23261
23265
  - "./images/7.png"
23266
+ - "./images/8.png"
23262
23267
  - "./images/9.png"
23263
23268
  - "./index.html"
23264
23269
  - "./install.sh"
23265
23270
  - "./non_compiled_programs/big_num"
23266
23271
  - "./non_compiled_programs/chat_rb"
23267
23272
  - "./non_compiled_programs/close"
23273
+ - "./non_compiled_programs/copy"
23268
23274
  - "./non_compiled_programs/dictate"
23269
23275
  - "./non_compiled_programs/email"
23270
23276
  - "./non_compiled_programs/emoji"
@@ -23284,6 +23290,7 @@ files:
23284
23290
  - "./other/best_programming_language/emeraldc.cr"
23285
23291
  - "./other/best_programming_language/example.c"
23286
23292
  - "./other/best_programming_language/out_0.c"
23293
+ - "./other/cleanup"
23287
23294
  - "./other/democracy.gemspec"
23288
23295
  - "./other/discourse_generator_desktop_widget/.qmake.stash"
23289
23296
  - "./other/discourse_generator_desktop_widget/a.cpp"
@@ -23293,6 +23300,7 @@ files:
23293
23300
  - "./other/discourse_generator_desktop_widget/prog"
23294
23301
  - "./other/emerald-browser/.qmake.stash"
23295
23302
  - "./other/emerald-browser/Makefile"
23303
+ - "./other/emerald-browser/OUT"
23296
23304
  - "./other/emerald-browser/a.o"
23297
23305
  - "./other/emerald-browser/open"
23298
23306
  - "./other/emerald-browser/open.c"
@@ -23302,10 +23310,7 @@ files:
23302
23310
  - "./other/emerald-browser/src/ss.h"
23303
23311
  - "./other/emerald-browser/test/a.cpp"
23304
23312
  - "./other/experimental_code/ABOUT_S"
23305
- - "./other/experimental_code/Resume.pdf"
23306
23313
  - "./other/experimental_code/a/a (1).tar.gz"
23307
- - "./other/experimental_code/a/a.out"
23308
- - "./other/experimental_code/a/hello_world"
23309
23314
  - "./other/experimental_code/a/help"
23310
23315
  - "./other/experimental_code/a/main_v1.cpp"
23311
23316
  - "./other/experimental_code/a/my_libs_gregory/.libs/mod_my_libs_gregory.lai"
@@ -23317,8 +23322,8 @@ files:
23317
23322
  - "./other/experimental_code/a/nginx.conf"
23318
23323
  - "./other/experimental_code/a/six"
23319
23324
  - "./other/experimental_code/c_prog"
23320
- - "./other/experimental_code/c_program_faster"
23321
23325
  - "./other/experimental_code/crypto"
23326
+ - "./other/experimental_code/description_of_what_ive_done_old.pdf"
23322
23327
  - "./other/experimental_code/find_abs_best"
23323
23328
  - "./other/experimental_code/get_data"
23324
23329
  - "./other/experimental_code/github"
@@ -23327,7 +23332,7 @@ files:
23327
23332
  - "./other/experimental_code/loop.js"
23328
23333
  - "./other/experimental_code/m.c"
23329
23334
  - "./other/experimental_code/man/foo.rb"
23330
- - "./other/experimental_code/merge"
23335
+ - "./other/experimental_code/merge.rb"
23331
23336
  - "./other/experimental_code/odi"
23332
23337
  - "./other/experimental_code/orig"
23333
23338
  - "./other/experimental_code/pr.rb"
@@ -24639,7 +24644,30 @@ files:
24639
24644
  - "./output_data"
24640
24645
  - "./physics"
24641
24646
  - "./push"
24642
- - "./src/clock"
24647
+ - "./src/_compilation/abs"
24648
+ - "./src/_compilation/add"
24649
+ - "./src/_compilation/append"
24650
+ - "./src/_compilation/append_each"
24651
+ - "./src/_compilation/args"
24652
+ - "./src/_compilation/delete"
24653
+ - "./src/_compilation/div"
24654
+ - "./src/_compilation/exp"
24655
+ - "./src/_compilation/floor"
24656
+ - "./src/_compilation/gsub"
24657
+ - "./src/_compilation/gsubip"
24658
+ - "./src/_compilation/last_nth"
24659
+ - "./src/_compilation/lines"
24660
+ - "./src/_compilation/mul"
24661
+ - "./src/_compilation/nth"
24662
+ - "./src/_compilation/nth_word"
24663
+ - "./src/_compilation/prepend"
24664
+ - "./src/_compilation/prepend_each"
24665
+ - "./src/_compilation/rip"
24666
+ - "./src/_compilation/rnip"
24667
+ - "./src/_compilation/selectlines"
24668
+ - "./src/_compilation/sub"
24669
+ - "./src/_compilation/swap"
24670
+ - "./src/_compilation/trim"
24643
24671
  - "./src/clock.cr"
24644
24672
  - "./src/color_tools/black"
24645
24673
  - "./src/color_tools/black.c"
@@ -24710,30 +24738,7 @@ files:
24710
24738
  - "./src/color_tools/yellow_bold_underline.c"
24711
24739
  - "./src/color_tools/yellow_underline"
24712
24740
  - "./src/color_tools/yellow_underline.c"
24713
- - "./src/compilation/abs"
24714
- - "./src/compilation/add"
24715
- - "./src/compilation/append"
24716
- - "./src/compilation/args"
24717
- - "./src/compilation/copy"
24718
- - "./src/compilation/div"
24719
- - "./src/compilation/dump"
24720
- - "./src/compilation/exp"
24721
- - "./src/compilation/floor"
24722
- - "./src/compilation/gsub"
24723
- - "./src/compilation/gsubip"
24724
- - "./src/compilation/last_nth"
24725
- - "./src/compilation/lines"
24726
- - "./src/compilation/mul"
24727
- - "./src/compilation/nth"
24728
- - "./src/compilation/prepend"
24729
- - "./src/compilation/rip"
24730
- - "./src/compilation/rnip"
24731
- - "./src/compilation/selectlines"
24732
- - "./src/compilation/sub"
24733
- - "./src/compilation/swap"
24734
- - "./src/compilation/undump"
24735
24741
  - "./src/compile_all"
24736
- - "./src/gsubip"
24737
24742
  - "./src/left_right"
24738
24743
  - "./src/left_right.cc"
24739
24744
  - "./src/left_right.exe"
@@ -24742,10 +24747,10 @@ files:
24742
24747
  - "./src/programs/abs"
24743
24748
  - "./src/programs/add"
24744
24749
  - "./src/programs/append"
24750
+ - "./src/programs/append_each"
24745
24751
  - "./src/programs/args"
24746
- - "./src/programs/copy"
24752
+ - "./src/programs/delete"
24747
24753
  - "./src/programs/div"
24748
- - "./src/programs/dump"
24749
24754
  - "./src/programs/exp"
24750
24755
  - "./src/programs/floor"
24751
24756
  - "./src/programs/gsub"
@@ -24753,25 +24758,25 @@ files:
24753
24758
  - "./src/programs/last_nth"
24754
24759
  - "./src/programs/lines"
24755
24760
  - "./src/programs/mul"
24756
- - "./src/programs/news"
24757
24761
  - "./src/programs/nth"
24762
+ - "./src/programs/nth_word"
24758
24763
  - "./src/programs/prepend"
24764
+ - "./src/programs/prepend_each"
24759
24765
  - "./src/programs/rip"
24760
24766
  - "./src/programs/rnip"
24761
24767
  - "./src/programs/selectlines"
24762
24768
  - "./src/programs/sub"
24763
24769
  - "./src/programs/swap"
24764
- - "./src/programs/undump"
24770
+ - "./src/programs/trim"
24765
24771
  - "./src/rgsub"
24766
24772
  - "./src/rgsub.c"
24767
24773
  - "./src/src/Makefile"
24768
- - "./src/src/QQ"
24769
- - "./src/src/code2"
24774
+ - "./src/src/cd"
24775
+ - "./src/src/code"
24770
24776
  - "./src/src/format_so_it_works"
24771
24777
  - "./src/src/functions.cr"
24772
24778
  - "./src/src/mk"
24773
- - "./src/test/cat"
24774
- - "./src/test/foo/dog"
24779
+ - "./src/src/rm"
24775
24780
  - "./thoughts_on_SIMULATIONS"
24776
24781
  - "./version_decrement"
24777
24782
  - "./version_increment"
data/SONG DELETED
@@ -1,156 +0,0 @@
1
- Thinking itself resides in their territory of circumvention
2
-
3
- We need change, we need intervention
4
-
5
- They have no genuine intention
6
-
7
- Complete neglect, complete inattention
8
-
9
- Stop this already, time to get rid
10
-
11
- Unthinkingly narrow-minded, acting just like a kid
12
-
13
- What horrendous non sense these creeps did
14
-
15
- Can we stop this, their non sense they overdid
16
-
17
- Maybe they only care about money, what was the bid
18
-
19
- Tunnel vision, everyone and everything they forbid
20
-
21
- Too bad, awful, acting just like a kid
22
-
23
- Towards the realm of insanity they already slid
24
-
25
- Can we stop this, their non sense they overdid
26
-
27
- Stop this already, time to get rid
28
-
29
- We need change, we need intervention
30
-
31
- Reason itself resides in their territory of circumvention
32
-
33
- They have no genuine intention
34
-
35
- Complete neglect, complete inattention
36
-
37
- All of this rudeness is something you would not miss
38
-
39
- This is something you can't comprehend, we can't comprehend this
40
-
41
- There are too many good ideas that one should not dismiss
42
-
43
- Ignorance is not happiness, negligence is not bliss
44
-
45
- They want you to witness the hell of the abyss
46
-
47
- They are completely negligent, they are utterly remiss
48
-
49
- Modesty and humility, they never gave
50
-
51
- Preordained, they already know their fave
52
-
53
- They can't do anything right, they only misbehave
54
-
55
- The speeches of the past, they only wish to engrave
56
-
57
- Cowardice abounds with them, they arent brave
58
-
59
- They act as bad as possible, they don't know how to behave
60
-
61
- All with their clique, eating their dessert
62
-
63
- So enamored by their own non sense, to themselves they flirt
64
-
65
- These guys are a bunch of bitches, perhaps one should buy them a miniskirt
66
-
67
- Their minds, they cannot exert
68
-
69
- Science is fundamentally inert
70
-
71
- With automatic ideas, they automatically assert
72
-
73
- An open conversation, they always divert
74
-
75
- They can't alter anything, they are inert
76
-
77
- Disingenuous to the extreme, the society they subvert
78
-
79
- So enamored by their own non sense, to themselves they flirt
80
-
81
- Their non sense is in your face, it is very overt
82
-
83
- With fixed ideas, they automatically assert
84
-
85
- Too bad, awful, acting just like a kid
86
-
87
- Towards the realm of insanity they already slid
88
-
89
- Can we stop this, their non sense they overdid
90
-
91
- Stop this already, time to get rid
92
-
93
- We need change, we need intervention
94
-
95
- Reason itself resides in their territory of circumvention
96
-
97
- They have no genuine intention
98
-
99
- Complete neglect, complete inattention
100
-
101
- All of this rudeness is something you would not miss
102
-
103
- This is something you can't comprehend, we can't comprehend this
104
-
105
- There are too many good ideas that one should not dismiss
106
-
107
- Ignorance is not happiness, negligence is not bliss
108
-
109
- They want you to witness the hell of the abyss
110
-
111
- They are completely negligent, they are utterly remiss
112
-
113
- Modesty and humility, they never gave
114
-
115
- Preordained, they already know their fave
116
-
117
- They can't do anything right, they only misbehave
118
-
119
- The speeches of the past, they only wish to engrave
120
-
121
- Cowardice abounds with them, they arent brave
122
-
123
- They act as bad as possible, they don't know how to behave
124
-
125
- Brittle as possible, they are truly unguarded
126
-
127
- Enlightenment values, they have not safeguarded
128
-
129
- Their remissness is spectacular, the world they've bombarded
130
-
131
- The clique is so insular, I swear they're retarded
132
-
133
- Any novel ideas, they automatically have discarded
134
-
135
- Any novelty, they have disregarded
136
-
137
- The clique is so insular, I swear they're retarded
138
-
139
- Violence is second nature to them, their friends they've bombarded
140
-
141
- Enlightenment values, they have not safeguarded
142
-
143
- Any novel ideas, they automatically have discarded
144
-
145
- Brittle as possible, they are truly unguarded
146
-
147
- Don't care about anyone, you have no regard
148
-
149
- They act like a retard
150
-
151
- Behaving just like in the schoolyard
152
-
153
- They failure is a sight to truly behold, I swear it's avant-garde
154
-
155
- They deserve to be combated, with the truth we should bombard
156
-
data/bin/dump DELETED
Binary file
data/bin/undump DELETED
Binary file
data/documentation/dump DELETED
@@ -1,11 +0,0 @@
1
- Dump surrounds its input with quotes
2
-
3
- ls | dump
4
-
5
- => “....”
6
-
7
- Use undump to get the reverse
8
-
9
- See also
10
-
11
- undump
data/documentation/undump DELETED
@@ -1,15 +0,0 @@
1
- undump is the opposite of dump
2
-
3
- Example
4
-
5
- echo cat | dump | undump
6
-
7
- => cat
8
-
9
- echo cat | dump
10
-
11
- => “cat”
12
-
13
- echo '“cat”' | undump
14
-
15
- => cat
Binary file
Binary file
data/src/clock DELETED
Binary file