forked from openmainframeproject/omp-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
processed_landscape.yml
2745 lines (2745 loc) · 128 KB
/
processed_landscape.yml
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
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Projects
subcategories:
- subcategory:
name: Linux
items:
- item:
name: Feilong
homepage_url: 'https://www.openmainframeproject.org/projects/feilong'
repo_url: 'https://github.com/openmainframeproject/python-zvm-sdk'
logo: feilong.svg
project: incubating
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 10
license: Apache License 2.0
description: >-
z/VM Cloud Connector is a development sdk for managing z/VM. It provides a set of APIs to operate z/VM including guest, image, network, volume
etc.
latest_commit_date: '2019-07-18T04:00:00.000Z'
latest_commit_link: /openmainframeproject/python-zvm-sdk/commit/6a72e8bd16049bd49f8117639079b21afd88ee4e
release_date: null
release_link: null
contributors_count: 22
contributors_link: 'https://github.com/openmainframeproject/python-zvm-sdk/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject/python-zvm-sdk/commit/e3114feead46f9dc46600203626131c50cddc72f
start_date: '2016-10-19T06:08:30Z'
image_data:
fileName: feilong.svg
hash: Pi9UfFakinbIEjL2gnrL+DxxLniwKrZnG0UChqRLe/g=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: s390-tools
homepage_url: 'https://www.ibm.com/developerworks/linux/linux390/s390-tools.html'
repo_url: 'https://github.com/ibm-s390-tools/s390-tools'
logo: s390-tools.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
github_data:
stars: 28
license: MIT License
description: Tools for use with the s390 Linux kernel and device drivers
latest_commit_date: '2019-08-08T04:00:00.000Z'
latest_commit_link: /ibm-s390-tools/s390-tools/commit/a9f4ae2db3fa513941244956e323cb6ce214ca5f
release_date: '2019-07-31T14:38:46Z'
release_link: 'https://github.com/ibm-s390-tools/s390-tools/releases'
contributors_count: 25
contributors_link: 'https://github.com/ibm-s390-tools/s390-tools/graphs/contributors'
github_start_commit_data:
start_commit_link: /ibm-s390-tools/s390-tools/commit/b627b8d8e1abef0724ceac559f255fabb996b359
start_date: '2017-08-07T14:13:17Z'
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: s390-tools.svg
hash: kcU2GXEHvX/A3tJohQ9q6qIUg233Nv2tVle5nR7rX8c=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-19T15:43:27.000Z
- item:
name: libica
homepage_url: 'https://github.com/opencryptoki/libica'
repo_url: 'https://github.com/opencryptoki/libica'
logo: libica.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
github_data:
stars: 2
license: Other
description: Crypto library for s390x.
latest_commit_date: '2019-06-26T04:00:00.000Z'
latest_commit_link: /opencryptoki/libica/commit/f13678e81050600a34c820a68d7a31f6f2a2d1df
release_date: null
release_link: null
contributors_count: 9
contributors_link: 'https://github.com/opencryptoki/libica/graphs/contributors'
github_start_commit_data:
start_commit_link: /opencryptoki/libica/commit/80bfa416c1369be4d8b99194e744c2f84541d934
start_date: '2005-01-14T22:36:18Z'
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: libica.svg
hash: f+OzklvH8YI0XeGDhk3+psAHVj/uyTQBiSZmDZVn51g=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-19T15:43:27.000Z
- item:
name: crc32-s390x
homepage_url: 'https://github.com/linux-on-ibm-z/crc32-s390x'
repo_url: 'https://github.com/linux-on-ibm-z/crc32-s390x'
logo: crc32-s390x.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
github_data:
stars: 1
license: Other
description: Library for accelerated CRC-32 checksums on the IBM z13 processor
latest_commit_date: '2016-12-20T05:00:00.000Z'
latest_commit_link: /linux-on-ibm-z/crc32-s390x/commit/30980583bf9ed3fa193abb83a1849705ff457f70
release_date: null
release_link: null
contributors_count: 1
contributors_link: 'https://github.com/linux-on-ibm-z/crc32-s390x/graphs/contributors'
github_start_commit_data:
start_commit_link: /linux-on-ibm-z/crc32-s390x/commit/a4d891f47e8204bc2c8a4cc4c31262ff09b842c6
start_date: '2016-05-31T14:19:37Z'
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: crc32-s390x.svg
hash: oRNL8khKCPEvYvQ6oubeBf79TxdDFepLd/mlAWhszwQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-19T15:43:27.000Z
- subcategory:
name: z/OS
items:
- item:
name: Zowe
homepage_url: 'https://www.zowe.org'
description: Zowe is an open source framework for leveraging data and applications in z/OS from modern applications and tools.
repo_url: 'https://github.com/zowe/api-layer'
logo: zowe.svg
project: graduated
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 15
license: Eclipse Public License 2.0
description: Zowe API Mediation Layer
latest_commit_date: '2019-08-15T04:00:00.000Z'
latest_commit_link: /zowe/api-layer/commit/0eba051af5cf2f8215770a010b17b7eb18c763ba
release_date: '2019-08-15T11:19:31Z'
release_link: 'https://github.com/zowe/api-layer/releases'
contributors_count: 23
contributors_link: 'https://github.com/zowe/api-layer/graphs/contributors'
github_start_commit_data:
start_commit_link: /zowe/api-layer/commit/c34ba84ac7bf5b042c76b375c5e3638c2a78b449
start_date: '2018-10-30T12:48:43Z'
image_data:
fileName: zowe.svg
hash: BdoSgULyRmzDep67eLYtIuIhouyWK9OiigLipxJfbgk=
best_practice_data:
badge: 2322
percentage: 79
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: Zorow
homepage_url: 'https://www.openmainframeproject.org/projects/zorow'
repo_url: 'https://github.com/openmainframeproject/zorow'
logo: zorow.svg
project: incubating
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 6
license: Apache License 2.0
description: zorow project hosted by Open Mainframe Project
latest_commit_date: '2019-08-19T04:00:00.000Z'
latest_commit_link: /openmainframeproject/zorow/commit/c29420deee8b88698356652ec835aeec265812ef
release_date: null
release_link: null
contributors_count: 9
contributors_link: 'https://github.com/openmainframeproject/zorow/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject/zorow/commit/ab971f63edefdbae82946978822280c99a8c7c40
start_date: '2019-04-29T13:02:20Z'
image_data:
fileName: zorow.svg
hash: dL6vdxqOUlfmToHwT8gfaT9+EMCUbji/PcV2Eh3TPBo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: zECS
homepage_url: 'https://github.com/walmartlabs/zECS'
repo_url: 'https://github.com/walmartlabs/zECS'
logo: zecs.svg
crunchbase: 'https://www.crunchbase.com/organization/walmart-labs'
crunchbase_data:
name: Walmart Labs
description: 'WalmartLabs, the technology division responsible for Walmart’s global e-Commerce initiatives.'
num_employees_min: 1001
num_employees_max: 5000
homepage: 'http://www.walmartlabs.com/'
city: San Bruno
region: California
country: United States
twitter: 'http://twitter.com/WalmartLabs'
linkedin: 'https://www.linkedin.com/company/9390173'
ticker: WMT
kind: market_cap
github_data:
stars: 8
license: Apache License 2.0
description: z/OS-based Enterprise Cache Service
latest_commit_date: '2017-07-13T04:00:00.000Z'
latest_commit_link: /walmartlabs/zECS/commit/6d6bcbbc89c9be086a58cb7ad2ff4d702e873d02
release_date: null
release_link: null
contributors_count: 5
contributors_link: 'https://github.com/walmartlabs/zECS/graphs/contributors'
github_start_commit_data:
start_commit_link: /walmartlabs/zECS/commit/9a1b04dd3d76bd4aa5b92a40c99ffd3dd33c50af
start_date: '2016-11-22T03:15:05Z'
yahoo_finance_data:
market_cap: 319700074496
effective_ticker: WMT
image_data:
fileName: z-ecs.svg
hash: wprnuQAzagtswAxJZ6Zqzih0RyZQikHW6vYLLEVGVAw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T12:18:01.000Z
- item:
name: zFAM
homepage_url: 'https://github.com/walmartlabs/zFAM'
repo_url: 'https://github.com/walmartlabs/zFAM'
logo: zfam.svg
crunchbase: 'https://www.crunchbase.com/organization/walmart-labs'
crunchbase_data:
name: Walmart Labs
description: 'WalmartLabs, the technology division responsible for Walmart’s global e-Commerce initiatives.'
num_employees_min: 1001
num_employees_max: 5000
homepage: 'http://www.walmartlabs.com/'
city: San Bruno
region: California
country: United States
twitter: 'http://twitter.com/WalmartLabs'
linkedin: 'https://www.linkedin.com/company/9390173'
ticker: WMT
kind: market_cap
github_data:
stars: 16
license: Apache License 2.0
description: z/OS-based File Access Manager
latest_commit_date: '2018-12-17T05:00:00.000Z'
latest_commit_link: /walmartlabs/zFAM/commit/f57e36adec60c0c03d2fb86cd944b2ce0c43f8f5
release_date: null
release_link: null
contributors_count: 3
contributors_link: 'https://github.com/walmartlabs/zFAM/graphs/contributors'
github_start_commit_data:
start_commit_link: /walmartlabs/zFAM/commit/93f3ced6f001dc7a027741a19335315c0cba0b59
start_date: '2016-11-22T03:35:49Z'
yahoo_finance_data:
market_cap: 319700074496
effective_ticker: WMT
image_data:
fileName: z-fam.svg
hash: UzNuUap3QItqSul2gDbY1LY+8xHAT547iOAZpEC5KH0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T12:18:01.000Z
- item:
name: z/OS Node Accessor
homepage_url: 'https://github.com/IBM/zos-node-accessor'
repo_url: 'https://github.com/IBM/zos-node-accessor'
logo: zos-node-accessor.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
github_data:
stars: 16
license: Eclipse Public License 1.0
description: z/OS Node Accessor - A Node module to help Node.JS developers interacting with z/OS easily.
latest_commit_date: '2019-08-23T04:00:00.000Z'
latest_commit_link: /IBM/zos-node-accessor/commit/ed957f352d9c32c39ebc776f70c175e450f30290
release_date: '2019-08-24T10:59:54Z'
release_link: 'https://github.com/IBM/zos-node-accessor/releases'
contributors_count: 7
contributors_link: 'https://github.com/IBM/zos-node-accessor/graphs/contributors'
github_start_commit_data:
start_commit_link: /IBM/zos-node-accessor/commit/9cd4dab421b48f65d5e371fe8d7d239015722bb5
start_date: '2017-10-12T08:37:34Z'
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: z-os-node-accessor.svg
hash: QUlbxsss+DZ27eM9JHYj/3CIVhBQ7s6Ro6tfKlaDQLs=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-19T15:43:27.000Z
- item:
name: z/OS Tools
homepage_url: 'https://github.com/IBM/IBM-Z-zOS'
repo_url: 'https://github.com/IBM/IBM-Z-zOS'
logo: zos-tools.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
github_data:
stars: 117
license: Apache License 2.0
description: 'The helpful and handy location for finding and sharing z/OS files, which are not included in the product.'
latest_commit_date: '2019-08-12T04:00:00.000Z'
latest_commit_link: /IBM/IBM-Z-zOS/commit/0e59c2a169a7b83d0ef10a72760f7af259035948
release_date: null
release_link: null
contributors_count: 19
contributors_link: 'https://github.com/IBM/IBM-Z-zOS/graphs/contributors'
github_start_commit_data:
start_commit_link: /IBM/IBM-Z-zOS/commit/c94c49958d7a64cbf11151f8e3b5877e50d6b42c
start_date: '2017-07-17T15:24:03Z'
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: z-os-tools.svg
hash: pVqE8vizMFEU3eoA+dPVu9OIemv3Q+xaX5U7e4cKw7w=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-19T15:43:27.000Z
- item:
name: zUID
homepage_url: 'https://github.com/walmartlabs/zUID'
repo_url: 'https://github.com/walmartlabs/zUID'
logo: zuid.svg
crunchbase: 'https://www.crunchbase.com/organization/walmart-labs'
crunchbase_data:
name: Walmart Labs
description: 'WalmartLabs, the technology division responsible for Walmart’s global e-Commerce initiatives.'
num_employees_min: 1001
num_employees_max: 5000
homepage: 'http://www.walmartlabs.com/'
city: San Bruno
region: California
country: United States
twitter: 'http://twitter.com/WalmartLabs'
linkedin: 'https://www.linkedin.com/company/9390173'
ticker: WMT
kind: market_cap
github_data:
stars: 11
license: Apache License 2.0
description: z/OS-based Unique Identifier generator
latest_commit_date: '2018-12-17T05:00:00.000Z'
latest_commit_link: /walmartlabs/zUID/commit/4bf25a2eed97c7e0c2f586cdcfb5fdb8e5575121
release_date: null
release_link: null
contributors_count: 3
contributors_link: 'https://github.com/walmartlabs/zUID/graphs/contributors'
github_start_commit_data:
start_commit_link: /walmartlabs/zUID/commit/a57d9be0acc6e1d24a7f628db14c98316a543f07
start_date: '2016-11-16T22:30:24Z'
yahoo_finance_data:
market_cap: 319700074496
effective_ticker: WMT
image_data:
fileName: z-uid.svg
hash: iKRCS4zZq5o3G7n+yNWW0gRkrXbTLA+8Bd4AiQ43ezo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T12:18:01.000Z
- subcategory:
name: Other
items:
- item:
name: TerseDecompress
homepage_url: 'https://www.openmainframeproject.org/projects/tersedecompress'
repo_url: 'https://github.com/openmainframeproject/tersedecompress'
logo: tersedecompress.svg
project: incubating
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 1
license: Apache License 2.0
description: >-
TerseDecompress is a java program that can be used to decompress files which have been previously compressed on an IBM Mainframe using the TERSE
/ AMATERSE program (on IBM z/OS or IBM z/VM).
latest_commit_date: '2019-05-15T04:00:00.000Z'
latest_commit_link: /openmainframeproject/tersedecompress/commit/c4b93e46d2ff3037066c30de12c1103ef8321ab8
release_date: null
release_link: null
contributors_count: 2
contributors_link: 'https://github.com/openmainframeproject/tersedecompress/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject/tersedecompress/commit/9d879bd2d6d3bc7717b33014646710a012a0e420
start_date: '2019-02-07T13:14:55Z'
image_data:
fileName: terse-decompress.svg
hash: PxMXomWB4wWYprTeNRslt3ONb0dyZhGou7ukb5pQYVI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: ADE
project: graduated
homepage_url: 'http://openmainframeproject.github.io/ade/'
repo_url: 'https://github.com/openmainframeproject/ade'
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
logo: ade.svg
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 27
license: GNU General Public License v3.0
description: null
latest_commit_date: '2017-11-13T05:00:00.000Z'
latest_commit_link: /openmainframeproject/ade/commit/6ecf4a36c957ba9eac8cf0fc1d367a7a0ca37ce4
release_date: null
release_link: null
contributors_count: 7
contributors_link: 'https://github.com/openmainframeproject/ade/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject/ade/commit/7276e5ed0f61982cacd37d3c3adcf8c732c0857a
start_date: '2016-02-17T19:42:40Z'
image_data:
fileName: ade.svg
hash: khXzDxtM2O/qvUHcE/TlywgtaEFpH3xvdvckJjUf2kU=
best_practice_data:
badge: 378
percentage: 100
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: Mentorship
project: graduated
homepage_url: 'http://openmainframeproject.github.io/ade/'
repo_url: 'https://github.com/openmainframeproject-internship/resources'
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
logo: mentorship.svg
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 6
license: Creative Commons Attribution 4.0 International
description: Open Mainframe Project Summer Internship program resources
latest_commit_date: '2019-06-28T04:00:00.000Z'
latest_commit_link: /openmainframeproject-internship/resources/commit/8e57d51817c42c6bb336d470f3912aec0efb88de
contributors_count: 2
contributors_link: 'https://github.com/openmainframeproject-internship/resources/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject-internship/resources/commit/ed53bdf9419ee7cd904d8ec2236315ae36a35bc9
start_date: '2018-12-13T19:41:44Z'
image_data:
fileName: mentorship.svg
hash: x9uqGKDmxAGDCiNqvsL3TqdsgHyVIeQVcrnNI1XzYhk=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- item:
name: Atom language syntax highlighting for z/VM
homepage_url: 'https://atom.io/users/openmainframeproject'
repo_url: 'https://github.com/openmainframeproject/atompkg-language-zvm-asm'
crunchbase: 'https://www.crunchbase.com/organization/open-mainframe-project'
project: incubating
logo: atom.svg
crunchbase_data:
name: Open Mainframe Project
description: The Open Mainframe Project intends to increase collaboration across the mainframe community and to developed shared tool sets and resources.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.openmainframeproject.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/OpenMFProject'
linkedin: null
github_data:
stars: 0
license: Apache License 2.0
description: Atom editor package that adds language syntax highlighting for z/VM assembler language files.
latest_commit_date: '2019-02-15T05:00:00.000Z'
latest_commit_link: /openmainframeproject/atompkg-language-zvm-asm/commit/f192b343d15bfa914c31e3b9c1b682fbba73a677
release_date: '2019-02-15T11:42:48Z'
release_link: 'https://github.com/openmainframeproject/atompkg-language-zvm-asm/releases'
contributors_count: 2
contributors_link: 'https://github.com/openmainframeproject/atompkg-language-zvm-asm/graphs/contributors'
github_start_commit_data:
start_commit_link: /openmainframeproject/atompkg-language-zvm-asm/commit/1b25c5951a2da1d0baeac78bcd0b450081ad6f8e
start_date: '2017-09-13T17:33:01Z'
image_data:
fileName: atom-language-syntax-highlighting-for-z-vm.svg
hash: cuELGwLPBkibaC2Fw5DuwPvFb6dquFsbSXyLtnEiGAQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-16T18:53:09.000Z
- category:
name: Zowe Conformant
subcategories:
- subcategory:
name: API Mediation Layer
items:
- item:
name: CA File Master™ Plus
homepage_url: 'https://docops.ca.com/ca-file-master-plus/11/en/using-the-rest-api'
logo: omp_catechnologies-cafilemasterplus.svg
crunchbase: 'https://www.crunchbase.com/organization/broadcom'
stock_ticker: AVGO
crunchbase_data:
name: Broadcom
description: 'Broadcom is a leading designer, developer and global supplier of a broad range of analog and digital semiconductor connectivity solutions.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.broadcom.com'
city: San Jose
region: California
country: United States
twitter: 'http://twitter.com/Broadcom'
linkedin: 'https://www.linkedin.com/company/broadcom'
ticker: BRCM
kind: market_cap
yahoo_finance_data:
market_cap: 108692119552
effective_ticker: AVGO
image_data:
fileName: ca-file-master-plus.svg
hash: it5DvN/pa6YXUKl7GHgKlS+8yOEPdHIX7voxjnfnedY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-23T14:17:01.000Z
- item:
name: (E)JES Zowe REST API
description: The Zowe API for (E)JES is based on REST principles and is compatible with the Zowe API Mediation Layer.
logo: omp_phoenix-ejes.svg
homepage_url: 'https://phoenixsoftware.com/ejes/ejes_zowe.htm'
crunchbase: 'https://www.crunchbase.com/organization/phoenix-software-international'
crunchbase_data:
name: Phoenix Software International
description: 'Phoenix Software International, Inc., is a systems software development company providing advanced software applications to enterprises.'
num_employees_min: null
num_employees_max: null
homepage: 'http://www.phoenixsoftware.com/'
city: El Segundo
region: California
country: United States
twitter: 'https://twitter.com/PhnxSoftware'
linkedin: 'https://www.linkedin.com/company/phoenix-software-international'
image_data:
fileName: e-jes-zowe-rest-api.svg
hash: TUs7HVUJ6s3T33VBEBAWv7n4EQ/+57InapfWPeURiNM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-09T16:30:51.000Z
- item:
name: IBM® Db2 DevOps Experience for z/OS - API Mediation Layer
description: >-
Allows you to bring applications to market more rapidly, at lower costs and with less risk. You can implement modern application development
practices by automating and standardizing processes while ensuring your organizational standards and business rules are followed.
logo: omp_ibm-db2.svg
homepage_url: 'https://www.ibm.com/us-en/marketplace/db2-devops-experience'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-db2-dev-ops-experience-for-z-os-api-mediation-layer.svg
hash: /PMnqA9tNVR4ZfQJ7xml9R997BVCN7dRxruMaCvIZ/o=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- item:
name: IBM MQ for z/OS Plug-in for Zowe CLI - API Mediation Layer
logo: omp_ibm-mq-for-cli.svg
homepage_url: 'https://www.ibm.com/products/mq/zos'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-mq-for-z-os-plug-in-for-zowe-cli-api-mediation-layer.svg
hash: NG5F/lxqikMq+Xrhx9mnKYMG9B27mQXAY1n4IK1baVU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- subcategory:
name: App Framework
items:
- item:
name: IBM® Db2 DevOps Experience for z/OS - App Framework
description: >-
Allows you to bring applications to market more rapidly, at lower costs and with less risk. You can implement modern application development
practices by automating and standardizing processes while ensuring your organizational standards and business rules are followed.
logo: omp_ibm-db2.svg
homepage_url: 'https://www.ibm.com/us-en/marketplace/db2-devops-experience'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-db2-dev-ops-experience-for-z-os-app-framework.svg
hash: /PMnqA9tNVR4ZfQJ7xml9R997BVCN7dRxruMaCvIZ/o=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- item:
name: IBM® Service Management Unite(SMU)
description: >-
IBM® Service Management Unite(SMU) is a customizable service management user interface that provides dashboards to monitor and operate IBM Z
environments. Zowe application plugin for SMU is provided to allow user to use SMU directly on Zowe Desktop.
logo: omp_ibm-servicemanagement.svg
homepage_url: 'https://www.ibm.com/us-en/marketplace/ibm-service-management-unite'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-service-management-unite-smu.svg
hash: zMnBRmF2Of7hEG8IwdbN30kItP52OVSlZmMVvUhBELw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- item:
name: Rocket™ BlueZone
description: >-
Rocket BlueZone Web is a zero-footprint terminal emulator that delivers real-time access to enterprise applications. You can combine the
capabilities in BlueZone with the power of the Zowe open source development framework using our BlueZone Web plug-in for Zowe.
logo: omp_rocket-bluezone.svg
homepage_url: 'https://www.rocketsoftware.com/products/rocket-bluezonepassport-terminal-emulator/rocket-bluezone-terminal-emulation'
crunchbase: 'https://www.crunchbase.com/organization/rocket-software'
crunchbase_data:
name: Rocket Software
description: Rocket Software is a software development firm that offers enterprise infrastructure products and various related services.
num_employees_min: 5001
num_employees_max: 10000
homepage: 'http://www.rocketsoftware.com'
city: Waltham
region: Massachusetts
country: United States
twitter: 'http://twitter.com/Rocket'
linkedin: 'https://www.linkedin.com/groups/Rocket-Software-3997577?home=&gid=3997577&trk=groups_guest_most_popular-h-logo'
kind: funding
funding: 91911267
image_data:
fileName: rocket-blue-zone.svg
hash: 9U7+wo9pNL8gIa9YG0FVtyW54GhrHjotJL3UNdlH564=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-15T18:07:02.000Z
- item:
name: IBM® Service Management Suite for z/OS
description: >-
IBM® Service Management Suite is focused on delivering comprehensive management of your z/OS enterprise, encompassing monitoring, automation,
network management, and asset discovery.
logo: omp_ibm-sms-for-zos.svg
homepage_url: 'https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/0/897/ENUS217-270/index.html'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-service-management-suite-for-z-os.svg
hash: VOR5InQ4IMdHuY26pVZoUXj8ysjKQVqZQd8iebinSnI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- item:
name: IBM® Service Automation Suite
description: IBM® Service Automation Suite V1.1.0 offers a single point of control for a broad range of systems management functions.
logo: omp_ibm-sas.svg
homepage_url: 'https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/5/897/ENUS219-085/index.html&request_locale=en'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-service-automation-suite.svg
hash: hWb6ndXMrxf52j9BMty3KH3q5S3hozP0deNDW/aXLjk=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- item:
name: IBM MQ for z/OS Plug-in for Zowe CLI - App Framework
logo: omp_ibm-mq-for-cli.svg
homepage_url: 'https://www.ibm.com/products/mq/zos'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
twitter: 'https://twitter.com/ibmz'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company/ibm/'
ticker: IBM
kind: market_cap
yahoo_finance_data:
market_cap: 120682749952
effective_ticker: IBM
image_data:
fileName: ibm-mq-for-z-os-plug-in-for-zowe-cli-app-framework.svg
hash: NG5F/lxqikMq+Xrhx9mnKYMG9B27mQXAY1n4IK1baVU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-26T20:06:06.000Z
- subcategory:
name: CLI
items:
- item:
name: CA Endevor® SCM Plug-in for Zowe CLI
description: >-
The CA Endevor® SCM Plug-in for Zowe CLI lets you interact with CA Endevor through a local command-line interface. You can control CA Endevor
application lifecycle actions, allowing easy scripting from off-platform CI/CD pipelines.
homepage_url: >-
https://docops.ca.com/ca-brightside-enterprise/2-0/en/ca-brightside-command-line-interface-cli/available-cli-plug-ins/ca-brightside-plug-in-for-ca-endevor-scm
logo: omp_catechnologies-caendevor.svg
crunchbase: 'https://www.crunchbase.com/organization/broadcom'
stock_ticker: AVGO
crunchbase_data:
name: Broadcom
description: 'Broadcom is a leading designer, developer and global supplier of a broad range of analog and digital semiconductor connectivity solutions.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.broadcom.com'
city: San Jose
region: California
country: United States
twitter: 'http://twitter.com/Broadcom'
linkedin: 'https://www.linkedin.com/company/broadcom'
ticker: BRCM
kind: market_cap
yahoo_finance_data:
market_cap: 108692119552
effective_ticker: AVGO
image_data:
fileName: ca-endevor-scm-plug-in-for-zowe-cli.svg
hash: CoAIqyWajcIYFtczcjcD1UlD7YYnWqNomtYLDUeTsuI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-23T14:17:01.000Z
- item:
name: CA File Master™ Plus Plug-in for Zowe CLI
description: >-
The CA File Master™ Plus Plug-in for Zowe CLI brings advanced file management and data manipulation functionality to the CLI. Control functions
that CLI can invoke include copying, renaming and deleting files, and populating files with data.
homepage_url: >-
https://docops.ca.com/ca-brightside-enterprise/2-0/en/ca-brightside-command-line-interface-cli/available-cli-plug-ins/ca-brightside-plug-in-for-ca-file-master-plus
logo: omp_catechnologies-cafilemasterplus.svg
crunchbase: 'https://www.crunchbase.com/organization/broadcom'
stock_ticker: AVGO
crunchbase_data:
name: Broadcom
description: 'Broadcom is a leading designer, developer and global supplier of a broad range of analog and digital semiconductor connectivity solutions.'