-
Notifications
You must be signed in to change notification settings - Fork 18
/
programs.cfg
381 lines (381 loc) · 15.7 KB
/
programs.cfg
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
{
["gist"] = {
files = {
["master/gist/gist.lua"] = "/bin",
["master/man/gist"] = "/man",
["master/gist/README.md"] = "/share/doc/gist"
},
name = "Gist uploader and downloader",
description = "Makes it easy to download or upload files from/to Gist.",
authors = "Fingercomp",
repo = "tree/master/gist/"
},
["nn"] = {
files = {
["master/nn/nn.lua"] = "/bin",
["master/man/nn"] = "/man",
["master/man/nanomachines"] = "/man",
["master/nn/README.md"] = "/share/doc/nn"
},
name = "Nanomachines control",
description = "Gives one control of their nanomachines.",
authors = "Fingercomp",
repo = "tree/master/nn/"
},
["game-of-life"] = {
files = {
["master/game-of-life/game-of-life.lua"] = "/bin",
["master/game-of-life/README.md"] = "/share/doc/game-of-life"
},
name = "Conway's Game of Life",
description = "An implementation of the Life.",
authors = "Fingercomp",
repo = "tree/master/game-of-life/"
},
["opg-chat"] = {
files = {
["master/opg-chat/opg-chat.lua"] = "/bin",
["master/opg-chat/chat-modules/admin.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/input.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/channels.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/hide.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/user.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/help.module"] = "/lib/chat-modules",
["master/opg-chat/chat-modules/network.module"] = "/lib/chat-modules",
["master/opg-chat/README.md"] = "/share/doc/opg-chat"
},
name = "IRC-like OpenPeripheral glasses chat.",
description = "A modular chat program for OP glasses with many features.",
authors = "Fingercomp",
repo = "tree/master/opg-chat/"
},
["smap"] = {
files = {
["master/smap/smap/init.lua"] = "/lib/smap",
["master/smap/smap/audio/init.lua"] = "/lib/smap/audio",
["master/smap/smap/input/nbs.input.lua"] = "/lib/smap/input",
["master/smap/smap/input/midi.input.lua"] = "/lib/smap/input",
["master/smap/smap/output/pcspkr.output.lua"] = "/lib/smap/output",
["master/smap/smap/output/inb.output.lua"] = "/lib/smap/output",
["master/smap/smap/output/beep.output.lua"] = "/lib/smap/output",
["master/smap/smap/output/sound.output.lua"] = "/lib/smap/output",
["master/smap/smap.lua"] = "/bin",
["master/smap/README.md"] = "/share/doc/smap"
},
name = "Simple Minecraft Audio Player",
description = "A Minecraft audio player with support of some file formats and devices",
note = "Frozen and broken. C'est la vie",
hidden = true,
authors = "Fingercomp",
repo = "tree/master/smap/smap/"
},
["libsemver"] = {
files = {
["master/libsemver/semver.lua"] = "/lib",
["master/libsemver/README.md"] = "/share/doc/libsemver"
},
name = "Semantic version parser",
description = "A SemVer 2.0 parser originally written in Python, and ported to Moonscript",
note = "The original version can be found here: https://git.io/vKTbW",
authors = "The python-semanticversion project; ported to MoonScript by Fingercomp",
repo = "tree/master/libsemver/"
},
["libsemver-src"] = {
files = {
["master/libsemver/semver.moon"] = "/src"
},
name = "Semantic version parser (MoonScript source)",
description = "A SemVer 2.0 parser originally written in Python, and ported to Moonscript (MoonScript source)",
note = "The original version can be found here: https://git.io/vKTbW",
authors = "The python-semanticversion project; ported to MoonScript by Fingercomp",
repo = "tree/master/libsemver/"
},
["libaevent"] = {
files = {
["master/libaevent/aevent.lua"] = "/lib",
["master/libaevent/README.md"] = "/share/doc/libaevent"
},
name = "A little more advanced event library",
description = "Unlike the standard event system, it also has callback priorities, event cancelling, and allows pushing events with any payload (functions, tables, etc.).",
authors = "LeshaInc",
repo = "tree/master/libaevent"
},
["libbigint"] = {
files = {
["master/libbigint/bigint.lua"] = "/lib",
["master/libbigint/README.md"] = "/share/doc/libbigint"
},
name = "A big-numbers library",
description = "Enables one to have very big integers, storing them in a metatable",
authors = "Ted Unangst <[email protected]>",
note = "Copypasted from https://bitbucket.org/tedu/bigintlua/raw/9610654f6d3fe5686e3500fed8aac59eab74edae/bigint.lua",
repo = "tree/master/libmetanum"
},
["libder-decoder"] = {
files = {
["master/libder-decoder/der-decoder.lua"] = "/lib",
["master/libder-decoder/README.md"] = "/share/doc/libder-decoder"
},
dependencies = {
["libbigint"] = "/"
},
name = "DER decoder",
description = "Decodes the data encoded with Distinguished Encoding Rules, a subset of ASN.1 (Abstract Syntax Notation One). Provides a context functionality, allowing to decode the X.509 certificates!",
authors = "Fingercomp",
repo = "tree/master/libder-decoder",
},
["lua-lockbox"] = {
files = {
["master/lua-lockbox/lockbox/init.lua"] = "/lib/lockbox",
["master/lua-lockbox/lockbox/cipher/aes128.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/aes192.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/aes256.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/des3.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/des.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/tea.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/xtea.lua"] = "/lib/lockbox/cipher",
["master/lua-lockbox/lockbox/cipher/mode/cbc.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/cfb.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/ctr.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/ecb.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/ige.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/ofb.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/cipher/mode/pcbc.lua"] = "/lib/lockbox/cipher/mode",
["master/lua-lockbox/lockbox/digest/md2.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/md4.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/md5.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/ripemd128.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/ripemd160.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/sha1.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/sha2_224.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/digest/sha2_256.lua"] = "/lib/lockbox/digest",
["master/lua-lockbox/lockbox/kdf/pbkdf2.lua"] = "/lib/lockbox/kdf",
["master/lua-lockbox/lockbox/mac/hmac.lua"] = "/lib/lockbox/mac",
["master/lua-lockbox/lockbox/padding/ansix923.lua"] = "/lib/lockbox/padding",
["master/lua-lockbox/lockbox/padding/isoiec7816.lua"] = "/lib/lockbox/padding",
["master/lua-lockbox/lockbox/padding/pkcs7.lua"] = "/lib/lockbox/padding",
["master/lua-lockbox/lockbox/padding/zero.lua"] = "/lib/lockbox/padding",
["master/lua-lockbox/lockbox/util/array.lua"] = "/lib/lockbox/util",
["master/lua-lockbox/lockbox/util/base64.lua"] = "/lib/lockbox/util",
["master/lua-lockbox/lockbox/util/bit.lua"] = "/lib/lockbox/util",
["master/lua-lockbox/lockbox/util/queue.lua"] = "/lib/lockbox/util",
["master/lua-lockbox/lockbox/util/stream.lua"] = "/lib/lockbox/util",
["master/lua-lockbox/README.md"] = "/share/doc/lua-lockbox"
},
description = "A collection of cryptographic primitives and protocols written in pure Lua",
authors = "James L.",
repo = "tree/master/lua-lockbox"
},
["libtls"] = {
files = {
["master/libtls/tls.lua"] = "/lib",
["master/libtls/README.md"] = "/share/doc/libtls"
},
dependencies = {
["libder-decoder"] = "/",
["libbigint"] = "/",
["lua-lockbox"] = "/"
},
name = "A TLS library",
description = "This library enables one to send and receive data over a secure (kind of) TLSv1.2 connection",
authors = "Fingercomp",
repo = "tree/master/libtls"
},
["libtls13"] = {
files = {
["master/libtls13/src/asn/bitstring.lua"] = "/lib/tls13/asn",
["master/libtls13/src/asn/encode.lua"] = "/lib/tls13/asn",
["master/libtls13/src/asn/oid.lua"] = "/lib/tls13/asn",
["master/libtls13/src/crypto/cipher/mode/gcm.lua"] = "/lib/tls13/crypto/cipher/mode",
["master/libtls13/src/crypto/cipher/aes.lua"] = "/lib/tls13/crypto/cipher",
["master/libtls13/src/crypto/cipher/chacha20-poly1305.lua"] = "/lib/tls13/crypto/cipher",
["master/libtls13/src/crypto/curve25519/constants.lua"] = "/lib/tls13/crypto/curve25519",
["master/libtls13/src/crypto/curve25519.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/crypto/hash/sha2.lua"] = "/lib/tls13/crypto/hash",
["master/libtls13/src/crypto/hkdf.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/crypto/hmac.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/crypto/montgomery.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/crypto/rsa.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/crypto/secp384r1.lua"] = "/lib/tls13/crypto",
["master/libtls13/src/oc/group.lua"] = "/lib/tls13/oc",
["master/libtls13/src/oc/io.lua"] = "/lib/tls13/oc",
["master/libtls13/src/oc/rng.lua"] = "/lib/tls13/oc",
["master/libtls13/src/oc/sigalg.lua"] = "/lib/tls13/oc",
["master/libtls13/src/util/buffer.lua"] = "/lib/tls13/util",
["master/libtls13/src/util/map.lua"] = "/lib/tls13/util",
["master/libtls13/src/x509/attr.lua"] = "/lib/tls13/x509",
["master/libtls13/src/x509/ext.lua"] = "/lib/tls13/x509",
["master/libtls13/src/x509/sigalg.lua"] = "/lib/tls13/x509",
["master/libtls13/src/asn.lua"] = "/lib/tls13",
["master/libtls13/src/base64.lua"] = "/lib/tls13",
["master/libtls13/src/buffer.lua"] = "/lib/tls13",
["master/libtls13/src/error.lua"] = "/lib/tls13",
["master/libtls13/src/group.lua"] = "/lib/tls13",
["master/libtls13/src/handshake.lua"] = "/lib/tls13",
["master/libtls13/src/init.lua"] = "/lib/tls13",
["master/libtls13/src/io.lua"] = "/lib/tls13",
["master/libtls13/src/oc.lua"] = "/lib/tls13",
["master/libtls13/src/record.lua"] = "/lib/tls13",
["master/libtls13/src/sigalg.lua"] = "/lib/tls13",
["master/libtls13/src/util.lua"] = "/lib/tls13",
["master/libtls13/src/x509.lua"] = "/lib/tls13",
["master/libtls13/README.md"] = "/share/doc/tls13",
["master/libtls13/example/client.cer"] = "/share/doc/tls13/example",
["master/libtls13/example/client.lua"] = "/share/doc/tls13/example",
["master/libtls13/example/priv.der"] = "/share/doc/tls13/example",
["master/libtls13/example/pub.der"] = "/share/doc/tls13/example",
},
name = "TLS 1.3 client library",
description = "A TLS 1.3 client implementation",
authors = "Fingercomp",
repo = "tree/master/libtls13",
},
["libhttp"] = {
files = {
["master/libhttp/http.lua"] = "/lib",
["master/libhttp/README.md"] = "/share/doc/libhttp"
},
dependencies = {
["libtls"] = "/"
},
name = "A HTTP/HTTPS 1.1 library",
description = "A HTTPS 1.1 implementation that can send requests with any request method",
authors = "Fingercomp",
repo = "tree/master/libhttp"
},
["libcsv"] = {
files = {
["master/libcsv/csv.lua"] = "/lib",
["master/libcsv/README.md"] = "/share/doc/libcsv"
},
name = "A CSV parser",
description = "A CSV parser.",
authors = "Fingercomp",
repo = "tree/master/libcsv"
},
["lumber"] = {
files = {
["master/lumber/lumber.lua"] = "/bin",
["master/lumber/README.md"] = "/share/doc/lumber"
},
name = "Lumberjack",
description = "A basic lumberjack program.",
authors = "Fingercomp",
repo = "tree/master/lumber"
},
["charts"] = {
files = {
["master/charts/charts.lua"] = "/lib",
["master/charts/examples/hist-example-1.lua"] = "/share/doc/charts",
["master/charts/examples/prbar-example-1.lua"] = "/share/doc/charts",
["master/charts/README.md"] = "/share/doc/charts"
},
name = "Charts library",
description = "Histograms and progress bars. Look nice, powerful enough, easy to use.",
authors = "Fingercomp",
repo = "tree/master/charts"
},
["particly"] = {
files = {
["master/particly/particly.lua"] = "/lib",
["master/particly/README.md"] = "/share/doc/particly",
["master/particly/examples/2017.lua"] = "/share/doc/particly"
},
name = "Particle images",
description = "Draw in-world bitmap images using the Particle Card.",
authors = "Fingercomp",
repo = "tree/master/particly"
},
["pipedream"] = {
files = {
["master/pipedream/pipedream.lua"] = "/bin",
},
name = "Pipedream",
description = "A simple graphical program.",
authors = "Fingercomp",
repo = "tree/master/pipedream"
},
["railtank"] = {
files = {
["master/railtank/railtank.lua"] = "/bin",
["master/railtank/README.md"] = "/share/doc/railtank"
},
name = "Railtank",
description = "Tank monitoring program",
authors = "Fingercomp",
repo = "tree/master/railtank"
},
["sniff"] = {
files = {
["master/sniff/sniff.lua"] = "/bin"
},
name = "Sniff",
description = "A network sniffer",
authors = "Fingercomp",
repo = "tree/master/sniff"
},
["stars"] = {
files = {
["master/stars/stars.lua"] = "/bin",
},
name = "Stars",
description = "Something like that old Windows screensaver with stars.",
authors = "Fingercomp",
repo = "tree/master/stars"
},
["eumon"] = {
files = {
["master/eumon/eumon.lua"] = "/bin"
},
dependencies = {
["charts"] = "/"
},
name = "Eumon",
description = "EU storage monitor",
authors = "Fingercomp",
repo = "tree/master/eumon"
},
["net-flash"] = {
files = {
["master/net-flash/net-flash.lua"] = "/bin",
["master/net-flash/bios.lua"] = "/share/net-flash"
},
name = "net-flash",
description = "Remote code execution.",
authors = "Fingercomp",
repo = "tree/master/net-flash"
},
["synth"] = {
files = {
["master/synth/synth.lua"] = "/bin",
["master/synth/lib/advancedLua.lua"] = "/lib/synth",
["master/synth/lib/color.lua"] = "/lib/synth",
["master/synth/lib/doubleBuffering.lua"] = "/lib/synth",
["master/synth/lib/GUI.lua"] = "/lib/synth",
["master/synth/lib/image.lua"] = "/lib/synth"
},
name = "Synth",
description = "Graphical interface to the sound card.",
authors = "Fingercomp; bundled libraries by IgorTimofeev and LeshaInc",
repo = "tree/master/synth"
},
["hpm"] = {
files = {
["master/hpm/hpm.lua"] = "/bin"
},
name = "Hel package manager installer",
description = "Runs script from pastebin to install hpm",
authors = "Fingercomp",
repo = "tree/master/hpm"
},
["ffp"] = {
files = {
["master/ffp/ffp.lua"] = "/bin",
["master/ffp/complex.lua"] = "/lib"
},
name = "FFT-based Freaky Player",
description = "Can play PCM files; provided converter supports WAV files.",
authors = "Fingercomp",
repo = "tree/master/ffp"
}
}