-
Notifications
You must be signed in to change notification settings - Fork 0
/
contributions.yaml
5219 lines (5219 loc) · 173 KB
/
contributions.yaml
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
contributions:
- id: 1
source: https://github.com/remixlab/proscene/releases/download/latest/proscene.txt
status: VALID
type: library
name: proscene
authors: '[Jean Pierre Charalambos](http://otrolado.info)'
url: http://otrolado.info
categories:
- 3D
- Animation
- GUI
- Geometry
- I/O
- Utilities
sentence: This project is deprecated and will soon no longer be available. Download
the nub library instead.
paragraph: 'Main features include: 1. Default interactivity through the mouse and
keyboard that simply does what you expect; 2. Generic support for Human Interface
Devices; 3. Arcball, walkthrough and third person camera modes; 4. Hierarchical
coordinate systems (frames), with functions to convert between them; 5. Coordinate
systems can easily be moved with the mouse. 6. Keyframes; 7. Object picking; 8.
Keyboard shortcuts and camera profiles customization; 8. Animation framework;
9. Screen drawing; and, 10. Off-screen rendering mode support.'
version: '33'
prettyVersion: 3.0.1
minRevision: 256
maxRevision: 0
download: https://github.com/remixlab/proscene/releases/download/latest/proscene.zip
override:
categories:
- 3D
- Animation
- Geometry
- GUI
- I/O
- Utilities
- id: 2
source: ' http://www.carljohanrosen.com/processing/images/cellnoise-latest.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://www.carljohanrosen.com/processing/images/cellnoise-latest.txt%20
- id: 3
source: https://dev.benedikt-gross.de/libraries/Ani/Ani-latest.txt
status: VALID
type: library
name: Ani
authors: '[Benedikt Gross](http://benedikt-gross.de/)'
url: http://benedikt-gross.de/libraries/Ani/
categories:
- Animation
sentence: A lightweight library for creating animations and transitions.
paragraph: ''
version: '8'
prettyVersion: '2.7'
minRevision: 0
maxRevision: 0
download: https://dev.benedikt-gross.de/libraries/Ani/Ani-latest.zip
override:
categories:
- Animation
- id: 4
source: http://staff.city.ac.uk/~jwo/giCentre/utils/gicentreUtils.txt
status: VALID
type: library
name: gicentreUtils
authors: '[Jo Wood](http://gicentre.org/) and [Aidan Slingsby](http://gicentre.org/)'
url: http://www.gicentre.org/utils/
categories:
- Compilation
sentence: Assists creation of data visualization sketches.
paragraph: Includes color utilities, statistical graphics, morphing classes, spatial
utilities and map projections, force-directed layouts and text input/output. Together
these make the task of creating data visualization sketches much faster by providing
code for commonly repeated tasks such as zooming in and out of a sketch, setting
up color tables etc. For documentation and examples, see the [gicentreUtils pages](http://www.gicentre.org/utils/).
version: '14'
prettyVersion: 3.4.0
minRevision: 228
maxRevision: 0
download: http://staff.city.ac.uk/~jwo/giCentre/utils/gicentreUtils.zip
override:
categories:
- Compilation
- id: 5
source: ' http://nootropicdesign.com/processing-layers/downloads/layers.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://nootropicdesign.com/processing-layers/downloads/layers.txt
- id: 6
source: http://www.die-seite.ch/colladaloader/colladaLoader.txt
status: VALID
type: library
name: Collada Loader for SketchUp and Blender
authors: '[Markus Zimmermann](http://www.die-seite.ch/)'
url: http://www.die-seite.ch/
categories:
- 3D
sentence: Importer for kmz and dae files created by 3D softwares SketchUp 8 or Blender
2.75a
paragraph: The library is tested with versions of Sketchup 8 and Blender 2.75a.
It can run on default renderer (2D) or OpenGL (P2D,P3D). There exist also examples,
a user documentation and technical specification.
version: '21'
prettyVersion: '3.1'
minRevision: 242
maxRevision: 0
download: http://www.die-seite.ch/colladaloader/colladaLoader.zip
override:
categories:
- 3D
- id: 7
source:
https://github.com/generative-design/GenerativeDesignLibrary2/releases/download/latest/generativedesign.txt
status: DEPRECATED
type: library
name: GenerativeDesign
authors: '[Benedikt Gross, Hartmut Bohnacker](http://www.generative-gestaltung.de/)'
url: http://www.generative-gestaltung.de/
categories:
- ${library.categories}
sentence: A collection of various functions belonging to the book GENERATIVE DESIGN
(english), GENERATIVE GESTALTUNG (german) and DESIGN GENERATIF (french).
paragraph: It supplies classes and functions for 3d-surfaces, simple physics (nodes,
springs, attractors), graphic tablets, ASE-export or asynchronous loading of xml,
html and images.
version: '6'
prettyVersion: 1.0.5
minRevision: 0
maxRevision: 227
download:
https://github.com/generative-design/GenerativeDesignLibrary2/releases/download/latest/generativedesign.zip
override:
categories:
- Compilation
log:
- in skipped conf
- id: 8
source: http://www.saint-clair.net/download/gml4u/GML4U.txt
status: BROKEN
type: library
log:
- invalid file
- id: 9
source: ' http://www.wblut.com/hemesh/hemesh.txt '
status: BROKEN
type: library
log:
- file not found, status code 403 returned for url http://www.wblut.com/hemesh/hemesh.txt%20
- id: 10
source: http://shiffman.net/p5/libraries/mpe/mpe.txt
status: BROKEN
type: library
log:
- invalid file
- id: 11
source: https://github.com/shiffman/SFTP-Processing/releases/download/latest/sftp.txt
status: VALID
type: library
name: SFTP
authors: '[Daniel Shiffman](http://www.shiffman.net)'
url: https://github.com/shiffman/SFTP-Processing
categories:
- Data / Protocols
sentence: SFTP direct from Processing (using JSch)
paragraph: Includes ls and get, needs to be updated with put
version: '1'
prettyVersion: 0.1a
minRevision: 0
maxRevision: 0
download: https://github.com/shiffman/SFTP-Processing/releases/download/latest/sftp.zip
override:
categories:
- Data
- id: 12
source: http://www.shiffman.net/p5/libraries/qrcode/qrcodeprocessing.txt
status: BROKEN
type: library
log:
- invalid file
- id: 13
source: http://shiffman.net/p5/libraries/openkinect_processing/openkinect_processing.txt
status: BROKEN
type: library
log:
- invalid file
- id: 14
source: http://shiffman.net/p5/libraries/box2d_processing/box2d_processing.txt
status: BROKEN
type: library
log:
- invalid file
- id: 15
source: http://www.shiffman.net/p5/libraries/sms/sms.txt
status: BROKEN
type: library
log:
- invalid file
- id: 16
source: http://www.silentlycrashing.net/ezgestures/files/ezgestures.txt
status: BROKEN
type: library
log:
- invalid file
- id: 17
source: http://mrfeinberg.com/peasycam/peasycam.txt
status: VALID
type: library
name: PeasyCam
authors: '[Jonathan Feinberg](http://mrfeinberg.com/)'
url: http://mrfeinberg.com/peasycam/
categories:
- 3D
sentence: A mouse driven camera-control library for 3D sketches.
paragraph:
version: '302'
prettyVersion: '302'
minRevision: 227
maxRevision: 0
download: http://mrfeinberg.com/peasycam/peasycam.zip
override:
categories:
- 3D
- id: 18
source: http://www.ricardmarxer.com/fisica/download/fisica.txt
status: VALID
type: library
name: Fisica
authors: '[Ricard Marxer](http://www.ricardmarxer.com/)'
url: http://www.ricardmarxer.com/fisica
categories:
- Simulation
sentence: A wrapper for JBox2D, a 2D physics engine.
paragraph: It is simply a wrapper around [JBox2D](http://www.jbox2d.org/). It tries
to make it much easier to create physical models by exposing an object oriented
API similar to [PPhys2D](http://pphys2d.jmcouillard.com/) physics library for
Processing.
version: '16'
prettyVersion: ''
minRevision: 0
maxRevision: 0
download: http://www.ricardmarxer.com/fisica/download/fisica.zip
override:
categories:
- Simulation
- id: 19
source: http://www.smallbutdigital.com/releases/themidibus/themidibus-latest.txt
status: VALID
type: library
name: The MidiBus
authors: '[Severin Smith](https://www.smallbutdigital.com/)'
url: https://www.smallbutdigital.com/themidibus.php
categories:
- Data
sentence: The MidiBus is a minimal MIDI library for Processing, no frills, no limitations.
paragraph: The MidiBus is a MIDI library for Processing. It provides a quick and
simple way to access and interact with installed MIDI system resources. The MidiBus
is aimed primarily at real time MIDI applications. The focus is on strong MIDI
I/O capabilities and keeping frills to a minimum (e.g. no built in sequencer,
file read/write, MIDI recording/playback).
version: '8'
prettyVersion: '8'
minRevision: 0
maxRevision: 0
download: http://www.smallbutdigital.com/releases/themidibus/themidibus-latest.zip
override:
categories:
- Sound
- id: 20
source:
https://dl.dropboxusercontent.com/u/69944346/ColorSelectorPlus/ColorSelectorPlusTool.txt
status: BROKEN
type: tool
log:
- file not found, status code 404 returned for url
https://dl.dropboxusercontent.com/u/69944346/ColorSelectorPlus/ColorSelectorPlusTool.txt
- id: 21
source: http://www.gwoptics.org/processing/gwoptics_p5lib/download/gwoptics.txt
status: VALID
type: library
name: gwoptics
authors: '[Daniel Brown and Andreas Freise](http://www.gwoptics.org/processing/gwoptics_p5lib/)'
url: http://www.gwoptics.org/processing/gwoptics_p5lib/
categories:
- Math
sentence: Tools for drawing graphs in 2D and 3D.
paragraph: We have developped the library to create simple scientific simulations
and data displays, as shown on our [projects page](http://www.gwoptics.org/processing/).
version: '50'
prettyVersion: 0.5.0
minRevision: 0
maxRevision: 0
download: http://www.gwoptics.org/processing/gwoptics_p5lib/download/gwoptics.zip
override:
maxRevision: 228
categories:
- Math
log:
- in broken conf
- id: 22
source: ' http://fluidforms.eu/processing/fluid-forms-libs/download/FluidFormsLibs.txt '
status: BROKEN
type: library
log:
- invalid file
- id: 23
source: http://www.v3ga.net/processing/BlobDetection/blobDetection.txt
status: VALID
type: library
name: BlobDetection
authors: "[Julien 'v3ga' Gachadoat](http://www.v3ga.net)"
url: http://www.v3ga.net/processing/BlobDetection/
categories:
- Video & Vision
sentence: Computer vision library for finding blobs in an image
paragraph: ''
version: '1'
prettyVersion: '1.00'
minRevision: 0
maxRevision: 0
download: http://www.v3ga.net/processing/BlobDetection/blobDetection.zip
override:
categories:
- Video & Vision
- id: 24
source:
https://github.com/firmata/processing/releases/download/latest/processing-arduino.txt
status: VALID
type: library
name: Arduino (Firmata)
authors: '[David A. Mellis](http://dam.mellis.org/)'
url: http://arduino.cc/playground/Interfacing/Processing
categories:
- Hardware
sentence: Controls Arduino boards running the Firmata firmware.
paragraph: Works with the StandardFirmata example included in the Arduino software
distribution. To use Firmata with other software, see [the Firmata github repository](https://github.com/firmata/arduino)
version: '9'
prettyVersion: '9'
minRevision: 0
maxRevision: 0
download:
https://github.com/firmata/processing/releases/download/latest/processing-arduino.zip
override:
categories:
- Hardware
- id: 25
source: http://jorgecardoso.eu/processing/NXTComm/NXTComm.txt
status: VALID
type: library
name: NXTComm Processing
authors: '[Jorge C. S. Cardoso](http://jorgecardoso.eu)'
url: http://jorgecardoso.eu/processing/NXTComm/
categories:
- I/O
sentence: The NXTComm Processing library allows you to control the Lego Mindstorms
NXT robots.
paragraph: ''
version: '5'
prettyVersion: '0.99'
minRevision: 0
maxRevision: 0
download: http://jorgecardoso.eu/processing/NXTComm/NXTComm.zip
override:
categories:
- I/O
- id: 26
source:
http://jorgecardoso.eu/processing/MindSetProcessing/download/MindsetProcessing.txt
status: VALID
type: library
name: MindSet Processing
authors: '[Jorge C. S. Cardoso](http://jorgecardoso.eu)'
url: http://jorgecardoso.eu/processing/MindSetProcessing/
categories:
- I/O
sentence: The MindSetProcessing library allows you to use the NeuroSky Mindset brainwave
sensing headset with Processing.
paragraph: It gives you access to the raw wave values, to the eSense meters (Attention
and Meditation) and to the EEG values. It does not provide blink data. This library
was implemented using the Think Gear Communications driver J2ME implementation
provided in the Mindset Development Tools 2.1.
version: '2'
prettyVersion: 0.1.2
minRevision: 0
maxRevision: 0
download:
http://jorgecardoso.eu/processing/MindSetProcessing/download/MindsetProcessing.zip
override:
maxRevision: 228
categories:
- I/O
log:
- in broken conf
- id: 27
source: http://jorgecardoso.eu/processing/ID3/ID3.txt
status: VALID
type: library
name: ID3
authors: '[Jorge C. S. Cardoso](http://jorgecardoso.eu)'
url: http://jorgecardoso.eu/processing/ID3/
categories:
- Utilities
sentence: Extracts ID3 tags from Mp3 files.
paragraph: Allows you read the ID3v1.1 tags from MP3 files. If you want to know
more about ID3 tags check the [id3.org](http://id3.org) page.
version: '1'
prettyVersion: '0.9'
minRevision: 0
maxRevision: 0
download: http://jorgecardoso.eu/processing/ID3/ID3.zip
override:
categories:
- Utilities
- id: 28
source: http://projects.formatlos.de/ambientlightsensor/download/AmbientLightSensor.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url http://projects.formatlos.de/ambientlightsensor/download/AmbientLightSensor.txt
- id: 29
source: ' http://libraries.seltar.org/unzipit/unzipit.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url http://libraries.seltar.org/unzipit/unzipit.txt%20
- id: 30
source: http://libraries.seltar.org/motion/motion.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url http://libraries.seltar.org/motion/motion.txt
- id: 31
source: http://libraries.seltar.org/postToWeb/postToWeb.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url http://libraries.seltar.org/postToWeb/postToWeb.txt
- id: 32
source: http://n.clavaud.free.fr/processing/library/picking/download/Picking.txt
status: VALID
type: library
name: Picking
authors: '[Nicolas Clavaud](http://n.clavaud.free.fr/)'
url: http://n.clavaud.free.fr/processing/library/picking/
categories:
- Utilities
- 3D
sentence: Pick an object in a 3D scene easily.
paragraph: ''
version: '8'
prettyVersion: 0.3.1
minRevision: 0
maxRevision: 0
download: http://n.clavaud.free.fr/processing/library/picking/download/Picking.zip
override:
categories:
- 3D
log:
- url timeout, 2024-10-30
- url timeout, 2024-11-09
- url timeout, 2025-01-05
- id: 33
source: http://ekeneijeoma.com/processing/ijeomamotion/download/ijeomamotion.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://studioijeoma.com/processing/ijeomamotion/download/ijeomamotion.txt
- id: 34
source: http://www.deadpixel.ca/keystone/download/keystone.txt
status: VALID
type: library
name: Keystone
authors: '[David Bouchard](http://www.deadpixel.ca)'
url: https://github.com/davidbouchard/keystone
categories:
- Video & Vision
sentence: A library to help with basic projection mapping.
paragraph: This library allows you to warp sketches onto any flat surface by using
virtual corner pin keystoning.
version: '6'
prettyVersion: '006'
minRevision: 243
maxRevision: 0
download: http://www.deadpixel.ca/keystone/download/keystone.zip
override:
categories:
- Utilities
- id: 35
source: http://www.erase.net/projects/processing-sc/files/processing-sc.txt
status: VALID
type: library
name: SuperCollider client for Processing
authors: '[Daniel Jones](http://www.erase.net/)'
url: http://www.erase.net/projects/processing-sc/
categories:
- Sound
sentence: Framework to interface with the SuperCollider synthesis engine.
paragraph: This library provides a simple approach to interfacing with the powerful
[SuperCollider](http://supercollider.sourceforge.net) sound synthesis engine.
It provides objects to encapsulate common functions such as creating and manipulating
Synth, Buffer and Bus objects.
version: '1'
prettyVersion: 0.3.0
minRevision: 0
maxRevision: 0
download: http://www.erase.net/projects/processing-sc/files/processing-sc.zip
override:
categories:
- Sound
- id: 36
source: http://www.gdsstudios.com/processing/libraries/ocd/download/ocd.txt
status: VALID
type: library
name: 'OCD: Obsessive Camera Direction'
authors: '[Kristian Damkjer](http://www.gdsstudios.com/)'
url: http://www.gdsstudios.com/processing/libraries/ocd/
categories:
- 3D
sentence: The Obsessive Camera Direction (OCD) library allows intuitive control
and creation of Processing viewport Cameras.
paragraph: With OCD, it is easy set up several cameras and switch between them.
It is also easy to manipulate individual cameras using standard camera movement
commands.
version: '5'
prettyVersion: '1.5'
minRevision: 0
maxRevision: 0
download: http://www.gdsstudios.com/processing/libraries/ocd/download/ocd.zip
override:
categories:
- 3D
- id: 37
source: http://mrfeinberg.com/patchy/patchy.txt
status: VALID
type: library
log:
- invalid file
name: Patchy
authors: '[Jonathan Feinberg](http://mrfeinberg.com/)'
url: http://mrfeinberg.com/patchy/
categories:
- 3D
sentence: Patchy provides an easy-to-use bicubic patch for 3D Processing sketches.
version: '200'
minRevision: 0
maxRevision: 0
download: http://mrfeinberg.com/patchy/patchy.zip
- id: 38
source: http://www.ricardmarxer.com/geomerative/geomerative.txt
status: VALID
type: library
name: Geomerative
authors: '[Ricard Marxer](http://www.ricardmarxer.com/)'
url: http://www.ricardmarxer.com/geomerative
categories:
- Typography
sentence: Extends 2D geometry operations to facilitate generative geometry. Includes
a TrueType font interpreter.
paragraph: This library exposes the shapes (such as vector drawings or typographies)
in a more approchable way. Geomerative makes it easy to access the paths, the
handles and the points, making it easy to develop generative typography and geometry
pieces in Processing.
version: '43'
prettyVersion: ''
minRevision: 0
maxRevision: 0
download: http://www.ricardmarxer.com/geomerative/geomerative.zip
override:
categories:
- Geometry
- Typography
- id: 39
source: https://github.com/codeanticode/tablet/releases/download/latestv2/Tablet.txt
status: DEPRECATED
type: library
log:
- file not found, status code 500 returned for url https://github.com/codeanticode/tablet/releases/download/latestv2/Tablet.txt
name: Tablet
authors: '[Andres Colubri](http://interfaze.info/)'
url: http://interfaze.info/libraries/tablet/
categories:
- I/O
sentence: Tablet is a library for using pen tablets from Processing.
paragraph: It provides simplified access to the pen's pressure, tilt, etc. It is
based on <a href="https://sourceforge.net/projects/jpen/">JPen</a>, the Java Pen
Tablet Access Library.
version: '4'
prettyVersion: 1.2.1
minRevision: 0
maxRevision: 227
download: https://github.com/codeanticode/tablet/releases/download/latestv2/Tablet.zip
- id: 40
source: http://r-s-g.org/carnivore/download/carnivore_p5lib.txt
status: VALID
type: library
name: Carnivore
authors: '[RSG](http://r-s-g.org)'
url: http://r-s-g.org/carnivore
categories:
- Simulation
- Data
sentence: Surveillance tool for data networks.
paragraph: ''
version: '9'
prettyVersion: '9'
minRevision: 0
maxRevision: 0
download: http://r-s-g.org/carnivore/download/carnivore_p5lib.zip
override:
categories:
- Data
- Simulation
- id: 41
source: https://github.com/Syphon/Processing/releases/download/latest/Syphon.txt
status: VALID
type: library
name: Syphon
authors: '[Andres Colubri](http://andrescolubri.net/), [Tom Butterworth](http://kriss.cx/tom),
[Anton Marini](http://vade.info/)'
url: https://github.com/Syphon/Processing
categories:
- I/O
- Video & Vision
sentence: This library allows the sharing of video and images between applications
in macOS using the Syphon framework.
paragraph: Syphon is an open source macOS technology that allows applications to
share frames - full frame rate video or stills - with one another in realtime.
This library wraps Syphon using Java and provides a simple interface for frame
sharing in Processing.
version: '9'
prettyVersion: '4.0'
minRevision: 249
maxRevision: 0
download: https://github.com/Syphon/Processing/releases/download/latest/Syphon.zip
override:
categories:
- Video & Vision
- id: 42
source: ' http://wyldco.com/romefeeder/download/romefeeder.txt '
status: BROKEN
type: library
log:
- file not found, status code 410 returned for url http://wyldco.com/romefeeder/download/romefeeder.txt%20
- id: 43
source: http://saitoobjloader.googlecode.com/files/OBJLoader.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url http://saitoobjloader.googlecode.com/files/OBJLoader.txt
- id: 44
source: http://www.reades.com/MapThing/MapThing.txt
status: VALID
type: library
name: MapThing
authors: '[Jon Reades](http://www.reades.com/)'
url: http://www.reades.com/MapThing
categories:
- Data
sentence: A collection of classes for reading and displaying Shape files (a.k.a.
ESRI shapefiles), CSV, and GPX data in a map-based sketch.
paragraph: "There are four main classes with which you should be familiar: 1) BoundingBox
defines the sketch's geographic 'envelope' by mapping a shapefile's geographic
coordinates on to the viewable space of the sketch; 2) Lines is used to read and
display single-part and multi-part line data; 3) Points is used to read and display
point data; and 4) Polygons is used to read and display single and multi-part
polygon data (this only works with shapefiles for now). GPX display needs work."
version: '5'
prettyVersion: '1.4'
minRevision: 0
maxRevision: 0
download: http://www.reades.com/MapThing/MapThing.zip
override:
categories:
- Data
- id: 45
source: ' https://dl.dropboxusercontent.com/u/6990683/Processing/papaya.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://dl.dropboxusercontent.com/u/6990683/Processing/papaya.txt%20
- id: 46
source: http://www.lagers.org.uk/processing3/g4p/G4P.txt
status: VALID
type: library
name: G4P
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/g4p
categories:
- GUI
sentence: Provides a set of 2D GUI controls and multiple window support.
paragraph: Controls include buttons, sliders, knobs, labels, textfields, timers,
combo boxes, option buttons etc. and multiple windows. [G4P GUI builder](http://www.lagers.org.uk/g4ptool/index.html)
is a companion tool that enables the rapid (visual) development of user interfaces
with this library.
version: '50'
prettyVersion: 4.3.11
minRevision: 245
maxRevision: 0
download: http://www.lagers.org.uk/processing3/g4p/G4P.zip
override:
categories:
- GUI
- id: 47
source: http://transmote.com/nest/download/Nest.txt
status: VALID
type: library
name: Nest
authors: '[Eric Socolofsky](http://transmote.com/)'
url: http://transmote.com/nest/
categories:
- Utilities
sentence: Scenegraph and mouse event handling system based loosely on ActionScript
3.0.
paragraph: In addition to the scenegraph, Nest also includes an event-based communication
system (built on the Observer pattern as implemented by Java's Observer interface),
and some minimal UI components.
version: '9'
prettyVersion: 0.7.0
minRevision: 0
maxRevision: 0
download: http://transmote.com/nest/download/Nest.zip
override:
maxRevision: 228
categories:
- Utilities
log:
- in broken conf
- id: 48
source: ' http://kenai.com/downloads/l-system-utilities/lsystem.txt '
status: BROKEN
type: library
log:
- url timeout
- id: 49
source: http://thomasdiewald.com/processing/tools/TabManager/download/TabManager.txt
status: BROKEN
type: tool
log:
- invalid file
- id: 50
source: http://www.lagers.org.uk/processing/shapes3d/Shapes3D.txt
status: DEPRECATED
type: library
name: Shapes 3D
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/s3d4p/index.html
categories:
- 3D
sentence: 3D Shape creation and display made easy.
paragraph: Choose from a wide range of shapes including the sphere, box, cylinder,
torus, helix, bezier shapes and various tubes. All of the shapes can be shown
in wireframe, colour or textured with your own images. Many of library examples
need the [PeasyCam](http://http://www.processing.org/reference/libraries/
version: '10'
prettyVersion: 2.1.5
minRevision: 197
maxRevision: 227
download: http://www.lagers.org.uk/processing/shapes3d/Shapes3D.zip
override:
maxRevision: 228
categories:
- 3D
log:
- in broken conf
- in skipped conf
- id: 51
source: http://www.lagers.org.uk/processing/g4p/G4P.txt
status: DEPRECATED
type: library
name: G4P
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/g4p
categories:
- GUI
sentence: Provides a set of 2D GUI controls and multiple window support.
paragraph: Controls include buttons, sliders, knobs, labels, textfields, timers,
combo boxes, option buttons etc. and multiple windows. [G4P GUI builder](http://www.lagers.org.uk/g4ptool/index.html)
is a companion tool that enables the rapid (visual) development of user interfaces
with this library.
version: '30'
prettyVersion: 4.1.1
minRevision: 245
maxRevision: 0
download: http://www.lagers.org.uk/processing/g4p/G4P.zip
override:
categories:
- GUI
log:
- in skipped conf
- id: 52
source: http://www.lagers.org.uk/processing/guibuilder/G4PTool.txt
status: DEPRECATED
type: tool
name: G4P GUI Builder
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/g4ptool/index.html
categories:
- GUI
sentence: Graphic design tool for creating user interfaces with G4P.
paragraph: Provides a visual environment for the rapid creation and editing of user
interfaces using GUI controls from the [G4P](http://www.lagers.org.uk) library.
It generates all the source code necessary for the creation of the components
and skeleton event handlers for the user to complete. The [G4P](http://www.lagers.org.uk)
library will need to be installed to run the completed sketch.
version: '17'
prettyVersion: '2.6'
minRevision: 227
maxRevision: 227
download: http://www.lagers.org.uk/processing/guibuilder/G4PTool.zip
override:
categories:
log:
- in skipped conf
- id: 53
source: ' http://mrzl.net/yahooweather/YahooWeather.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://schwittlick.net/yahooweather/YahooWeather.txt%20
- id: 54
source: https://raw.github.com/fjenett/Guido/latest/releases/Guido.txt
status: VALID
type: library
name: Guido
authors: '[Florian Jenett](http://www.bezier.de/)'
url: https://github.com/fjenett/Guido
categories:
- GUI
sentence: A simple cross mode GUI library
paragraph: Guido is a small GUI library that is compatible with both Java (standard)
and JavaScript modes.
version: '143'
prettyVersion: 0.0.4
minRevision: 0
maxRevision: 0
download: https://raw.github.com/fjenett/Guido/latest/releases/Guido.zip
override:
categories:
- GUI
- id: 55
source: https://raw.github.com/fjenett/combinatorics/latest/releases/Combinatorics.txt
status: VALID
type: library
name: Combinatorics
authors: '[Florian Jenett](http://www.bezier.de/)'
url: https://github.com/fjenett/combinatorics
categories:
- Simulation / Math
sentence: Generate combinations, variations and permutations
paragraph: This library provides an easy way to generate combinations, variations
and permutations from a given set of values.
version: '3018'
prettyVersion: 0.0.11
minRevision: 0
maxRevision: 0
download: https://raw.github.com/fjenett/combinatorics/latest/releases/Combinatorics.zip
override:
categories:
- Math
- Simulation
- id: 56
source:
https://github.com/generative-design/GenerativeDesignLibrary3/releases/download/latest/generativedesign.txt
status: VALID
type: library
name: GenerativeDesign
authors: '[Hartmut Bohnacker, Benedikt Gross](http://www.generative-gestaltung.de/)'
url: http://www.generative-gestaltung.de/
categories:
- Compilations
sentence: A collection of various functions belonging to the book GENERATIVE DESIGN
(english), GENERATIVE GESTALTUNG (german) and DESIGN GENERATIF (french).
paragraph: It supplies classes and functions for 3d-surfaces, simple physics (nodes,
springs, attractors), graphic tablets, ASE-export or asynchronous loading of xml,
html and images.
version: '7'
prettyVersion: 1.0.6
minRevision: 239
maxRevision: 0
download:
https://github.com/generative-design/GenerativeDesignLibrary3/releases/download/latest/generativedesign.zip
override:
categories:
- Compilation
- id: 57
source: http://www.lagers.org.uk/processing3/guibuilder/G4PTool.txt
status: VALID
type: tool
name: G4P GUI Builder
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/g4ptool/index.html
categories:
- GUI
sentence: Graphic design tool for creating user interfaces with G4P.
paragraph: Provides a visual environment for the rapid creation and editing of user
interfaces using GUI controls from the [G4P](http://www.lagers.org.uk) library.
It generates all the source code necessary for the creation of the components
and skeleton event handlers for the user to complete. The [G4P](http://www.lagers.org.uk)
library will need to be installed to run the completed sketch.
version: '25'
prettyVersion: 4.4.2
minRevision: 246
maxRevision: 0
download: http://www.lagers.org.uk/processing3/guibuilder/G4PTool.zip
override:
categories:
- id: 58
source: http://www.sojamo.de/libraries/controlP5/controlP5.txt
status: VALID
type: library
name: ControlP5
authors: '[Andreas Schlegel](http://www.sojamo.de/)'
url: http://www.sojamo.de/libraries/controlp5
categories:
- GUI
sentence: A GUI library to build custom user interfaces for desktop and android
mode.
paragraph: Includes interface elements such as slider, button, knob, toggle, textfield,
dropdown menu, listbox, tabs, charts and more.
version: '85'
prettyVersion: 2.2.6
minRevision: 0
maxRevision: 0
download: http://www.sojamo.de/libraries/controlP5/controlP5.zip
override:
categories:
- GUI
- id: 59
source: ' http://thomasdiewald.at/processing/libraries/dLibs_freenect/download/dLibs_freenect.txt '
status: BROKEN
type: library
log:
- url timeout
- id: 60
source: https://dl.dropbox.com/u/87680069/gamepad.txt
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://dl.dropbox.com/u/87680069/gamepad.txt
- id: 61
source: ' https://dl.dropbox.com/u/87680069/piccolo2d.txt '
status: BROKEN
type: library
log:
- file not found, status code 404 returned for url https://dl.dropbox.com/u/87680069/piccolo2d.txt%20
- id: 62
source: http://www.lagers.org.uk/processing/sprites/Sprites.txt
status: VALID
type: library
name: Sprites
authors: '[Peter Lager](http://www.lagers.org.uk)'
url: http://www.lagers.org.uk/s4p
categories:
- Animation
sentence: Sprite control and animation for games and other graphic applications.
paragraph: Provides complete control over sprite image animation, sprite movement
and collision detection. Examples can be seen [here](http://www.lagers.org.uk/s4p/applets/s4p_showcase)
version: '10'
prettyVersion: 2.1.1
minRevision: 227
maxRevision: 0
download: http://www.lagers.org.uk/processing/sprites/Sprites.zip
override:
categories:
- Animation
- id: 63
source: http://rednoise.org/rita/rita.txt
status: VALID
type: library
name: RiTa
authors: '[Daniel C. Howe](https://rednoise.org/daniel)'
url: https://rednoise.org/rita/
categories:
- Language
- Typography
sentence: A library for natural language and generative writing.
paragraph: RiTa is a library for natural language and generative writing. Functionality
include text-generation (via grammars and n-grams), tagging (for syllables, phonemes,
stresses, and parts-of-speech), conjugation, pluralization, stemming, letter-to-phoneme
mapping, rhyme, alliteration and more. RiTa also includes its own writer-oriented
scripting language called RiScript. RiTa is written in Java and JavaScript, and
runs alone or via Processing, p5.js, Node, Observable and Android. It is free/libre
and open-source (via the GPL).
version: '2821'
prettyVersion: 2.8.21
minRevision: 0
maxRevision: 0
download: http://rednoise.org/rita/rita.zip
override:
categories:
- Language
- id: 64
source: ' http://www.muvium.com/frappuccino/frappuccino.txt '
status: BROKEN
type: library
log:
- invalid file