generated from jmertic/landscape-template
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathlandscape.yml
More file actions
1597 lines (1563 loc) · 92.8 KB
/
landscape.yml
File metadata and controls
1597 lines (1563 loc) · 92.8 KB
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
landscape:
- category:
name: OpenSSF Members
subcategories:
- subcategory:
name: Premier
items:
- item:
name: Amazon Web Services, Inc.
homepage_url: https://aws.amazon.com/
logo: amazon_web_services_inc.svg
description: Amazon.com, Inc. is an online retailer, offering new, refurbished and used products including books, DVDs, CDs, MP3 downloads, software, video games, electronics, furniture, apparel, jewelry, and toys. The company also manufactures consumer electronics (notably the Amazon Kindle and the Kindle Fire) and provides cloud computing services. Amazon is a publicly owned company and is based out of Seattle, WA.
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
twitter: https://twitter.com/amazon
extra:
linkedin_url: https://www.linkedin.com/company/amazon
- item:
name: Apple Inc.
homepage_url: https://apple.com/
logo: apple_inc.svg
description: Founded in 1976, Apple ignited the personal computer revolution in the 1970s with the Apple II and reinvented the personal computer in the 1980s with the Macintosh. Today, Apple continues to lead the industry in innovation with its award-winning computers, OS X operating system and iLife and professional applications. Apple is also spearheading the digital media revolution with its iPod portable music and video players, iTunes online store, and the mobile phone market with its revolutionary iPhone. Apple headquarters are located in Cupertino, California.
crunchbase: https://www.crunchbase.com/organization/apple
twitter: https://twitter.com/Apple
extra:
linkedin_url: https://www.linkedin.com/company/apple
- item:
name: Capital One Services LLC
homepage_url: https://capitalone.com/
logo: capital_one_services_llc.svg
description: Capital One-Europe is a subsidiary of the Capital One Financial Corporation and is based out of Nottingham England. They aim to provide a broad spectrum of financial products and services to consumers, small businesses and commercial clients all over Europe.
crunchbase: https://www.crunchbase.com/organization/capital-one
twitter: https://twitter.com/CapitalOne
extra:
linkedin_url: https://www.linkedin.com/company/capital-one
- item:
name: Datadog, Inc
homepage_url: https://datadoghq.com/
logo: datadog_inc.svg
description: Datadog is a monitoring service for IT, Operations and Development teams who write and run applications at scale, and want to turn the massive amounts of data produced by their apps, tools and services into actionable insight.
crunchbase: https://www.crunchbase.com/organization/datadog
twitter: https://twitter.com/datadoghq
extra:
linkedin_url: https://www.linkedin.com/company/datadog
- item:
name: Dell Technologies
homepage_url: https://delltechnologies.com/
logo: dell_technologies.svg
description: Dell Technologies provides digital technology solutions, products, and services including consulting, deployment, education and residency services, payment solutions, cloud services, and more. Dell Technologies is headquartered in Round Rock, Texas
crunchbase: https://www.crunchbase.com/organization/dell
twitter: https://twitter.com/Dell
extra:
linkedin_url: https://www.linkedin.com/company/delltechnologies
- item:
name: Ericsson
homepage_url: https://ericsson.com/
logo: ericsson.svg
description: Founded in 1876, Ericsson is a Swedish communication technology and services provider. The company offers software, services, and infrastructure for information and communications technology used by telecommunications operators, including traditional telecommunications, Internet Protocol networking equipment, mobile and fixed broadband, cable TV, IPTV, video systems, and business support solutions. Ericsson is headquartered in Stockholm, Sweden.
crunchbase: https://www.crunchbase.com/organization/ericsson
twitter: https://twitter.com/ericsson
extra:
linkedin_url: https://www.linkedin.com/company/ericsson
- item:
name: GitHub, Inc.
homepage_url: https://github.com/
logo: github_inc.svg
description: Launched in 2008, GitHub is a code hosting company located in San Francisco, California. They provide web-based graphical interface and desktop as a mobile integration, as well as access control and collaboration features such as task management, bug tracking, and wikis.
crunchbase: https://www.crunchbase.com/organization/github
twitter: https://twitter.com/github
extra:
linkedin_url: https://www.linkedin.com/company/github
- item:
name: Google LLC
homepage_url: https://google.com/
logo: google_llc.svg
description: Founded in 1998, Google, Inc. is a multinational corporation that provides Internet-related services and products, including an internet search engine, software, cloud computing, and advertising technologies.
crunchbase: https://www.crunchbase.com/organization/google
twitter: https://twitter.com/Google
extra:
linkedin_url: https://www.linkedin.com/company/google
- item:
name: Huawei Technologies Co., Ltd
homepage_url: https://huawei.com/
logo: huawei_technologies_co.svg
description: Huawei is a global provider of information and communications technology (ICT) infrastructure and smart devices. Huawei is headquartered in Shenzhen, China.
crunchbase: https://www.crunchbase.com/organization/huawei
twitter: https://twitter.com/Huawei
extra:
linkedin_url: https://www.linkedin.com/company/huawei
- item:
name: International Business Machines Corporation
homepage_url: https://ibm.com/
logo: international_business_machines_corporation.svg
description: |-
Founded in 1911, International Business Machines (IBM) is a multinational computer, technology, and IT consulting corporation that manufactures and sells computer hardware and software, and offers infrastructure services, hosting services, and consulting services. They are headquartered in Armonk, New York.
--- Merged Data:
IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.
crunchbase: https://www.crunchbase.com/organization/ibm
twitter: https://twitter.com/IBM
extra:
linkedin_url: https://www.linkedin.com/company/ibm
- item:
name: Microsoft Corporation
homepage_url: https://microsoft.com/
logo: microsoft_corporation.svg
description: The Microsoft Corporation is a publicly owned American software corporation headquartered in Redmond, Washington. Founded in 1975, the company develops, manufactures, licenses and supports a variety of computing products used by consumers and businesses. Some of their popular products include Windows, Xbox, Microsoft HoloLens, Microsoft Lumia, Outlook, Skype, OneDrive and Microsoft Band.
crunchbase: https://www.crunchbase.com/organization/microsoft
twitter: https://twitter.com/Microsoft
extra:
linkedin_url: https://www.linkedin.com/company/microsoft
- item:
name: Morgan Stanley
homepage_url: https://morganstanley.com/
logo: morgan_stanley.svg
description: Morgan Stanley is a multinational financial services corporation, providing products and services to a diversified group of clients and customers, including individuals, corporations, governments, and financial institutions through its subsidiaries and affiliates. Formed in 1935, the company is headquartered in New York City, New York.
crunchbase: https://www.crunchbase.com/organization/morgan-stanley
twitter: https://twitter.com/MorganStanley
extra:
linkedin_url: https://www.linkedin.com/company/morgan-stanley
- item:
name: Red Hat LLC
homepage_url: https://redhat.com/
logo: red_hat_llc.svg
description: Red Hat was established in 1993 and is headquartered in Raleigh, North Carolina. Red Hat is the provider of open source software solutions, using a community-powered approach to provide reliable and high-performing cloud, Linux, middleware, storage, and virtualization technologies. Red Hat also offers support, training, and consulting services. As the connective hub in a global network of enterprises, partners, and open source communities, Red Hat helps create relevant, innovative technologies that liberate resources for growth and prepare customers for the future of IT.
crunchbase: https://www.crunchbase.com/organization/red-hat
twitter: https://twitter.com/RedHat
extra:
linkedin_url: https://www.linkedin.com/company/red-hat
- item:
name: Sonatype, Inc.
homepage_url: https://sonatype.com/
logo: sonatype_inc.svg
description: |-
Global Headquarters
Sonatype, Inc.
12501 Prosperity Drive, Suite 350
Silver Spring, MD 20904
Canadian Office
Sonatype, Inc.
147 Wyndham St N, Suite 302
Guelph, ON, N1H 4E9
crunchbase: https://www.crunchbase.com/organization/sonatype
twitter: https://twitter.com/sonatype
extra:
linkedin_url: https://www.linkedin.com/company/sonatype
- subcategory:
name: General
items:
- item:
name: Ada Logics
homepage_url: https://adalogics.com/
logo: ada_logics.svg
description: ADA Logics specializes in advanced software security by providing vulnerability analysis, software auditing, and security automation services, enabling organizations to develop complex systems with a strong emphasis on safety and security through a com...
crunchbase: https://www.crunchbase.com/organization/ada-logics
extra:
linkedin_url: https://www.linkedin.com/company/ada-logics
- item:
name: Aiven
homepage_url: https://aiven.io/
logo: aiven.svg
description: Leverage the complete open source ecosystem of extensions and tools to create highly-performant data pipelines for event-driven applications on all major clouds.
crunchbase: https://www.crunchbase.com/organization/aiven
twitter: https://twitter.com/aiven_io
extra:
linkedin_url: https://www.linkedin.com/company/aiven
- item:
name: Akamai Technologies, Inc.
homepage_url: https://akamai.com/
logo: akamai_technologies_inc.svg
description: |-
U.S. offices Corporate headquarters
8 Cambridge Center
Cambridge, MA 02142
Telephone:
Sales: (877) 4-AKAMAI
(877) 425-2624
Employees 2380 (December 2011)
Website Akamai.com
crunchbase: https://www.crunchbase.com/organization/akamai-technologies
twitter: https://twitter.com/Akamai
extra:
linkedin_url: https://www.linkedin.com/company/akamai-technologies
- item:
name: Anaconda, Inc
homepage_url: https://anaconda.com/
logo: anaconda_inc.svg
description: Anaconda helps organizations simplify, safeguard, and accelerate AI with open source at scale. The Anaconda Platform bridges the gap between experimentation and production, giving teams the speed they need to innovate alongside the security and governance enterprises require. Over 50 million users and 95% of the Fortune 500 trust Anaconda for data science and AI development. With 21+ billion downloads across a decade of growth, Anaconda operates across hybrid AI environments and cloud platforms including AWS, Databricks, and Snowflake. Learn more at anaconda.com.
crunchbase: https://www.crunchbase.com/organization/continuum-analytics
twitter: https://twitter.com/anacondainc
extra:
linkedin_url: https://www.linkedin.com/company/anacondainc
- item:
name: Apiiro
homepage_url: https://apiiro.com/
logo: apiiro.svg
description: Industry-first Code Risk Platform™. Complete risk visibility with every change, from design to code to cloud.
twitter: https://twitter.com/ApiiroSecurity
organization:
name: Apiiro
linkedin: https://www.linkedin.com/company/apiiro
extra:
linkedin_url: https://www.linkedin.com/company/apiiro
- item:
name: Arm Limited
homepage_url: https://arm.com/
logo: arm_limited.svg
description: ARM Ltd. is a British semiconductor and software design company. The company develops microprocessors based on reduced instruction set computing that is licensed by more than 250 computer chip manufacturers. They serve a wide range of industries including automotive, healthcare, infrastructure, IoT, mobile, smart homes, and wearables. ARM has sold 1,379 licenses to more than 450 partners. The company was founded in 1990 and is headquartered in the UK
crunchbase: https://www.crunchbase.com/organization/arm
twitter: https://twitter.com/ArmCommunity
extra:
linkedin_url: https://www.linkedin.com/company/arm
- item:
name: AuriStor Inc.
homepage_url: https://auristor.com/
logo: auristor_inc.svg
description: |-
AuriStor, Inc. (formerly Your File System, Inc.), is taking the next step in transitioning enterprise file systems to global file systems by building a 21st century successor to AFS. In addition to continued support of the Enterprise File System space, AuriStor is making global file storage personal through the use of subscription services, personal storage servers and partnership arrangements with digital content providers, internet service providers, and cloud computing services.
AuriStor builds upon and nurtures the OpenAFS community of developers and users. Core AuriStor products will be available for free as open source. AuriStor offers storage appliances and commercial licenses which bundle the latest features, higher level functionality, automated updates, on-going technical support, and knowledge base access.
Specialties
OpenAFS, AuriStor, Kerberos, Heimdal
Website
https://www.auristor.com
Industry
Information Technology and Services
Type
Privately Held
Headquarters
255 W 94TH ST APT 6B NEW YORK, NEW YORK 10025-6985 United States
Company Size
1-10 employees
Founded
2007
Gerry Seidman
> President, AuriStor
> 917-501-8287
> gerry@auriStor.com
NYC Office
255 W 94th Street
New York NY 10025
United States
+1 (212) 769-9018
London Office
Fingate 5-7 Cranwood Street
London EC1V 9EE
United Kingdom
+44 (0) 20 3239 1966
crunchbase: https://www.crunchbase.com/organization/auristor
twitter: https://twitter.com/AuriStor
extra:
linkedin_url: https://www.linkedin.com/company/auristor-inc
- item:
name: Balena Ltd.
homepage_url: https://balena.io/
logo: balena_ltd.svg
description: Our goal is to empower you to write great applications for devices - both in the virtual realm and those that cross over into the physical world - without having to worry about the friction involved in getting your hardware working and keeping your application up to date.
crunchbase: https://www.crunchbase.com/organization/resin-io
twitter: https://twitter.com/balena_io
extra:
linkedin_url: https://www.linkedin.com/company/balenaio
- item:
name: Block, Inc.
homepage_url: https://block.xyz/
logo: block_inc.svg
description: Square provides merchants and individuals with an application which allows debit and credit cards to be processed through their phone or tablet.
crunchbase: https://www.crunchbase.com/organization/square
twitter: https://twitter.com/blocks
extra:
linkedin_url: https://www.linkedin.com/company/square--
- item:
name: Bloomberg Finance L.P.
homepage_url: https://techatbloomberg.com/
logo: bloomberg_finance_l_p.svg
description: Bloomberg is a privately held mass media, data, and financial software company headquartered in New York, New York. The company is best known for as a provider of business and financial market news, including stock quotes, world economics, and financial advice. Bloomberg includes a global TV network (Bloomberg Television), a radio station (WBBR), three magazines (Bloomberg Businessweek, Bloomberg Markets, and Bloomberg Pursuit), and a wire service (Bloomberg News). The company also provides financial software tools, including data services and an analytics and equity trading platform to financial companies and organizations through the Bloomberg terminal.
crunchbase: https://www.crunchbase.com/organization/bloomberg
twitter: https://twitter.com/business
extra:
linkedin_url: https://www.linkedin.com/company/bloomberg-bna
- item:
name: Boeing
homepage_url: https://boeing.com/
logo: boeing.svg
description: The Boeing Company provides products and services to customers in 145 countries. Boeing has been the premier manufacturer of commercial jetliners for more than 40 years and is a global market leader in military aircraft, satellites, missile defense, human space flight, and launch systems and services.
crunchbase: https://www.crunchbase.com/organization/boeing-7321
twitter: https://twitter.com/Boeing
extra:
linkedin_url: https://www.linkedin.com/company/boeing
- item:
name: Boost Security
homepage_url: https://boostsecurity.io/
logo: boost_security.svg
description: Developer-first zero friction DevSecOps automation platform that builds trust into your software supply chain.
twitter: https://twitter.com/boostsecurityio
organization:
name: Boost Security
linkedin: https://www.linkedin.com/company/boostsecurity-io
extra:
linkedin_url: https://www.linkedin.com/company/boostsecurity-io
- item:
name: Buildkite Pty Ltd
homepage_url: https://buildkite.com/
logo: buildkite_pty_ltd.svg
description: Buildkite is a platform for running fast, secure, and scalable continuous integration pipelines on your own infrastructure.
crunchbase: https://www.crunchbase.com/organization/buildkite
twitter: https://twitter.com/buildkite
extra:
linkedin_url: https://www.linkedin.com/company/buildkite
- item:
name: Canonical Group Limited
homepage_url: https://canonical.com/
logo: canonical_group_limited.svg
description: Canonical Ltd. is a UK-based privately held computer software company founded and funded by South African entrepreneur Mark Shuttleworth to market commercial support and related services for Ubuntu and related projects.
crunchbase: https://www.crunchbase.com/organization/canonical-ltd
twitter: https://twitter.com/Canonical
extra:
linkedin_url: https://www.linkedin.com/company/canonical-ltd-
- item:
name: Chainguard
homepage_url: https://chainguard.dev/
logo: chainguard.svg
description: Making the software supply chain secure by default.
crunchbase: https://www.crunchbase.com/organization/chainguard
twitter: https://twitter.com/chainguard_dev
extra:
linkedin_url: https://www.linkedin.com/company/chainguard-dev
- item:
name: Chainloop
homepage_url: https://chainloop.dev/
logo: chainloop.svg
description: Chainloop is an open source software supply chain control plane that simplifies attestation and artifact management for Devs and SecOps, ensuring compliance with ease.
crunchbase: https://www.crunchbase.com/organization/chainloop
extra:
linkedin_url: https://www.linkedin.com/company/chainloop-dev
- item:
name: Cisco Systems, Inc.
homepage_url: https://cisco.com/
logo: cisco_systems_inc.svg
description: "Cisco (NASDAQ: CSCO) is the worldwide technology leader that has been making the Internet work since 1984. Their people, products, and partners help society securely connect and seize tomorrow's digital opportunity today. Cisco and the Cisco logo are trademarks or registered trademarks of Cisco and/or its affiliates in the U.S. and other countries."
crunchbase: https://www.crunchbase.com/organization/cisco
twitter: https://twitter.com/Cisco
extra:
linkedin_url: https://www.linkedin.com/company/cisco
- item:
name: Citi
homepage_url: https://citi.com/
logo: citi.svg
description: |-
Citi, the leading global financial services company, has approximately 200 million customer accounts and does business in more than 140 countries. Through its two operating units, Citicorp and Citi Holdings, Citi provides consumers, corporations, governments and institutions with a broad range of financial products and services, including consumer banking and credit, corporate and investment banking, securities brokerage, and wealth management.
--- Merged Data:
Credit Cards, Banking, Mortgage, Personal Loans | Citi.com Citi's mission is to serve as a trusted partner to our clients by responsibly providing financial services that enable growth and economic progress. Our core activities are safeguarding assets,...
crunchbase: https://www.crunchbase.com/organization/citigroup
twitter: https://twitter.com/citi
extra:
linkedin_url: https://www.linkedin.com/company/citi
- item:
name: Cloudsmith Ltd
homepage_url: https://cloudsmith.com/
logo: cloudsmith_ltd.svg
description: Cloudsmith is a fully managed solution for controlling, securing, and distributing everything that flows through your software supply chain. Operate at enterprise scale, reduce risk, and streamline builds.
crunchbase: https://www.crunchbase.com/organization/cloudsmith-io
twitter: https://twitter.com/cloudsmith
extra:
linkedin_url: https://www.linkedin.com/company/cloudsmith
- item:
name: Comcast Cable Communications, LLC
homepage_url: https://xfinity.com/
logo: comcast_cable_communications_llc.svg
description: Founded in 1963 and headquartered in Philadelphia, Pennsylvania, Comcast Corporation is an American telecommunications conglomerate. Comcast owns two primary businesses, Comcast Cable and NBCUniversal. Comcast delivers phone service and high-speed internet under the brand Xfinity. Comcast provides its services for both residents and commercial businesses. E! Television Network, Telemundo & NBC are all a part of their broadcast networks. Some of their media includes news, entertainment, and sports.
crunchbase: https://www.crunchbase.com/organization/comcast
twitter: https://twitter.com/Xfinity
extra:
linkedin_url: https://www.linkedin.com/company/comcast
- item:
name: Control-Plane.io
homepage_url: https://control-plane.io/
logo: control_plane.svg
description: ControlPlane ⟁ Secure Kubernetes from supply-chain and runtime attacks ⟁ Zero trust, continuous security ⟁ containers | security | training | quality | open-source
crunchbase: https://www.crunchbase.com/organization/controlplane
twitter: https://twitter.com/controlplaneio
extra:
linkedin_url: https://www.linkedin.com/company/controlplane
- item:
name: Cybertrust Japan Co., Ltd.
homepage_url: https://cybertrust.co.jp/
logo: cybertrust_japan_co_ltd.svg
description: formerly Miracle Linux Corporation
crunchbase: https://www.crunchbase.com/organization/cybertrust
twitter: https://twitter.com/Cybertrust_JP
- item:
name: Cybozu, Inc.
homepage_url: https://cybozu.com/
logo: cybozu_inc.svg
description: San Francisco-based kintone is making teamwork better with an agile, cloud-based, no-coding-required business application build and deploy platform. kintone empowers teams of all shapes and sizes to collaborate and solve business process inefficiencies...
crunchbase: https://www.crunchbase.com/organization/cybozu
twitter: https://twitter.com/cybozu
extra:
linkedin_url: https://www.linkedin.com/company/cybozu
- item:
name: Defense Unicorns
homepage_url: https://defenseunicorns.com/
logo: defense_unicorns.svg
description: Defense Unicorns
crunchbase: https://www.crunchbase.com/organization/defense-unicorns
twitter: https://twitter.com/DefenseUnicorns
extra:
linkedin_url: https://www.linkedin.com/company/defense-unicorns
- item:
name: DeployHub, Inc.
homepage_url: https://deployhub.com/
logo: deployhub_inc.svg
description: DeployHub® is a fast, agentless and safe continuous deployment solution, born in the cloud. It's deployment version control engine allows you to easily deploy deltas across large Kubernetes clusters driven by your CI/CD pipeline. It is the open source choice for cloud, container or mixed legacy environments.
crunchbase: https://www.crunchbase.com/organization/deployhub
twitter: https://twitter.com/DeployHubProj
extra:
linkedin_url: https://www.linkedin.com/company/deployhubproj
- item:
name: Depository Trust and Clearing Corporation (DTCC)
homepage_url: https://dtcc.com/
logo: depository_trust_and_clearing_corporation_dtcc.svg
description: Depository Trust company (DTCC), founded in 1973 and headquartered in New York, New York, is an American post-trade financial services company providing clearing and settlement services to the financial markets.
crunchbase: https://www.crunchbase.com/organization/dtcc
twitter: https://twitter.com/The_DTCC
extra:
linkedin_url: https://www.linkedin.com/company/dtcc
- item:
name: Docker, Inc.
homepage_url: https://docker.com/
logo: docker_inc.svg
description: Docker is an open platform for developers and system administrators to build, ship and run distributed applications. They are based in Palo Alto, California.
crunchbase: https://www.crunchbase.com/organization/docker
twitter: https://twitter.com/Docker
extra:
linkedin_url: https://www.linkedin.com/company/docker
- item:
name: embraceable Technology
homepage_url: https://embraceable.ai/
logo: embraceable_technology.svg
description: embraceableAI offers intelligent digital assistants that outperform standard RAG frameworks and AI co-pilots, setting new benchmarks in result quality, compliance, and reliability.
organization:
name: embraceable Technology
- item:
name: Ensignia
homepage_url: https://ensignia.co/
logo: ensignia.svg
organization:
name: Ensignia
- item:
name: FOSSA
homepage_url: https://fossa.io/
logo: fossa.svg
description: FOSSA, Inc. is a software developer company. It provides open source compliance solutions for real-time defense against license violations. It was Founded in 2013 and is based in San Francisco, California.
crunchbase: https://www.crunchbase.com/organization/fossa-2
twitter: https://twitter.com/getfossa
extra:
linkedin_url: https://www.linkedin.com/company/fossa
- item:
name: Fujitsu Limited
homepage_url: https://fujitsu.com/
logo: fujitsu_limited.svg
description: Fujitsu is the leading Japanese information and communication technology (ICT) company offering a full range of technology products, solutions and services. Approximately 162, 000 Fujitsu people support customers in more than 100 countries. The company uses its experience and the power of ICT to shape the future of society with its customers. Fujitsu Limited reported consolidated revenues of 4.8 trillion yen (US$46 billion) for the fiscal year ended March 31, 2014. Fujitsu is the world's fourth largest IT services provider and No.1 in Japan. Fujitsu is among the world's top five providers of servers. FORTUNE named Fujitsu as one of 'the World's Most Admired Companies' in 2013. Fujitsu Group holds about 97, 000 patents worldwide. Fujitsu is part of the Dow Jones Sustainability Indexes (World), FTSE4Good Index Series, and Oekom research.
crunchbase: https://www.crunchbase.com/organization/fujitsu
twitter: https://twitter.com/Fujitsu_Global
extra:
linkedin_url: https://www.linkedin.com/company/fujitsu-uk-and-ireland
- item:
name: Futurewei Technologies, Inc.
homepage_url: https://futurewei.com/
logo: futurewei_technologies_inc.svg
description: FutureWei, based in Plano, Texas, is the North American subsidiary of Huawei Technologies Co. Ltd., a leading global vendor of telecommunications systems and network solutions based in Shenzhen, China. Huawei posted US$5.58 billion in sales in 2004 and has products deployed in over 90 countries. With a strong focus on network infrastructure, FutureWei Technologies, Inc. designs, markets and supports a wide range of advanced telecommunication products for service providers and enterprise network solutions.
crunchbase: https://www.crunchbase.com/organization/futurewei-technologies
extra:
linkedin_url: https://www.linkedin.com/company/futureweitechnologiesinc
- item:
name: Goldman Sachs & Co. LLC
homepage_url: https://goldmansachs.com/
logo: goldman_sachs_co.svg
description: Founded in 1869, Goldman Sachs is a global investment banking, securities, and investment management firm that provides client-based services that include corporations, financial institutions, governments and high net worth individuals. Goldman Sachs is headquartered in New York.
crunchbase: https://www.crunchbase.com/organization/goldman-sachs
twitter: https://twitter.com/GSCareers
extra:
linkedin_url: https://www.linkedin.com/company/goldman-sachs
- item:
name: G-Research
homepage_url: https://gresearch.co.uk/
logo: g_research.svg
description: |-
About us
G-Research is a leading quantitative research and technology company. By using the latest scientific techniques, we produce world-beating predictive research and build advanced technology to analyse the world’s data.
crunchbase: https://www.crunchbase.com/organization/g-research
twitter: https://twitter.com/GRESEARCHjobs
extra:
linkedin_url: https://www.linkedin.com/company/g-research
- item:
name: Guidewire Software, Inc.
homepage_url: https://guidewire.com/
logo: guidewire_software_inc.svg
description: Guidewire Software provides core back end systems software to the global property, casual and worker's compensation insurance industry. They offer a technology platform that combines core processing, data and analytics, and digital engagement to empowe...
crunchbase: https://www.crunchbase.com/organization/guidewire-software
extra:
linkedin_url: https://www.linkedin.com/company/guidewire-software
- item:
name: Hedera Hashgraph LLC
homepage_url: https://hedera.com/
logo: hedera_hashgraph_llc.svg
description: 53 employees
crunchbase: https://www.crunchbase.com/organization/hashgraph
twitter: https://twitter.com/hedera
extra:
linkedin_url: https://www.linkedin.com/company/hashgraph
- item:
name: Helvethink
homepage_url: https://helvethink.ch/
logo: helvethink.svg
description: Helvethink specializes in DevSecOps and cloud-native consulting, helping organizations design, build, and operate secure, scalable, and observable platforms through automation, infrastructure as code, and platform engineering.
organization:
name: Helvethink
- item:
name: herodevs
homepage_url: https://herodevs.com/
logo: herodevs.svg
description: HeroDevs is a team of elite web developers who can help your company solve the problems you're facing. Whether you're dealing with code quality issues, are unable to ship product on time, or are struggling to find a partner you can trust, HeroDevs has the experience to help your team.
organization:
name: herodevs
linkedin: https://www.linkedin.com/company/herodevs/
extra:
linkedin_url: https://www.linkedin.com/company/herodevs/
- item:
name: Hitachi, Ltd.
homepage_url: https://hitachi.com/
logo: hitachi_ltd.svg
description: Founded in 1910, Hitachi provides information and telecommunication systems, social infrastructure and industrial systems, electronic systems and equipment, construction machinery, high functional materials and components, automotive systems, smart life and eco-friendly systems, other products, and financial services in Japan and internationally. The company is headquartered in Tokyo, Japan.
crunchbase: https://www.crunchbase.com/organization/hitachi
twitter: https://twitter.com/HitachiGlobal
extra:
linkedin_url: https://www.linkedin.com/company/hitachi-data-systems
- item:
name: Honda Motor Co., Ltd.
homepage_url: https://honda.com/
logo: honda_motor_co_ltd.svg
description: |-
AGL Steering Committee Participation Agreement - Bronze
Honda's R&D subsidiary.
Parent company of Honda R&D America and Honda R&D Innovations (formerly Honda Silicon Valley Labs)
crunchbase: https://www.crunchbase.com/organization/honda-automobiles
twitter: https://twitter.com/Honda
extra:
linkedin_url: https://www.linkedin.com/company/american-honda-motor-company-inc-
- item:
name: JFrog, Inc
homepage_url: https://jfrog.com/
logo: jfrog_inc.svg
description: Founded in 2008, JFrog Ltd develops and provides a binary repository management solution for software distribution to software developers. The company offers Bintray, a community SaaS social platform for developers to distribute, store, download, and share software packages. The company is headquartered in Sunnyvale, California.
crunchbase: https://www.crunchbase.com/organization/jfrog-ltd
twitter: https://twitter.com/jfrog
extra:
linkedin_url: https://www.linkedin.com/company/jfrog-ltd
- item:
name: Keyfactor
homepage_url: https://keyfactor.com/
logo: keyfactor.svg
description: Control your cryptography with Keyfactor, the leader in PKI as-a-Service and crypto-agility solutions for a cloud-first world.
crunchbase: https://www.crunchbase.com/organization/certified-security-solutions
twitter: https://twitter.com/Keyfactor
extra:
linkedin_url: https://www.linkedin.com/company/wearekeyfactor
- item:
name: Kusari Inc
homepage_url: https://kusari.dev/
logo: kusari_inc.svg
description: Kusari Inc
crunchbase: https://www.crunchbase.com/organization/kusari
twitter: https://twitter.com/kusaridev
extra:
linkedin_url: https://www.linkedin.com/company/kusaridev
- item:
name: Legit Security
homepage_url: https://legitsecurity.com/
logo: legit_security.svg
description: Legit Security
crunchbase: https://www.crunchbase.com/organization/legit-security
twitter: https://twitter.com/LegitSecurity1
extra:
linkedin_url: https://www.linkedin.com/company/legitsecurity
- item:
name: Lockheed Martin
homepage_url: https://lmco.com/
logo: lockheed_martin.svg
description: |-
Founded in 1995, Lockheed Martin is a global aerospace, security, defense, and advanced technology company. The company's customers come from domestic and international defense and civil markets, with its principal customers being agencies of the US government.
--- Merged Data:
Lockheed Martin Corporation
crunchbase: https://www.crunchbase.com/organization/lockheed-martin
twitter: https://twitter.com/LockheedMartin
extra:
linkedin_url: https://www.linkedin.com/company/lockheed-martin
- item:
name: Minimus
homepage_url: https://minimus.io/
logo: minimus.svg
crunchbase: https://www.crunchbase.com/organization/minimus-077e
- item:
name: Nutanix, Inc.
homepage_url: https://nutanix.com/
logo: nutanix_inc.svg
description: Go beyond hyperconverged infrastructure with the solutions provided by Nutanix. We deliver a software-defined enterprise cloud that can run any application at any scale.
crunchbase: https://www.crunchbase.com/organization/nutanix
twitter: https://twitter.com/nutanix
extra:
linkedin_url: https://www.linkedin.com/company/nutanix
- item:
name: Open Source Technology Improvement Fund, Inc.
homepage_url: https://ostif.org/
logo: open_source_technology_improvement_fund_inc.svg
description: Non-profit organization that connects open-source security projects with much needed funding and logistical support.
crunchbase: https://www.crunchbase.com/organization/open-source-technology-improvement-fund
twitter: https://twitter.com/OSTIFofficial
extra:
linkedin_url: https://www.linkedin.com/company/ostif
- item:
name: Patchstack OÜ
homepage_url: https://patchstack.com/
logo: patchstack_ou.svg
description: Patchstack is a company that provides the fastest protection for WordPress security vulnerabilities. They offer vPatching to detect and mitigate vulnerabilities, automatically deploying highly targeted protection rules without affecting site performanc...
crunchbase: https://www.crunchbase.com/organization/webarx
- item:
name: Quantrexion – Governance & Risk Intelligence
homepage_url: https://quantrexion.com/
logo: quantrexion_governance_risk_intelligence.svg
description: .
organization:
name: Quantrexion – Governance & Risk Intelligence
- item:
name: ReeVo Spa
homepage_url: https://reevo.it/
logo: reevo_spa.svg
description: ReeVo is the premier Italian Cloud & Cyber Security provider, safeguarding businesses with Secure Cloud and Cyber Security solutions through ISO-certified Data Centers.
crunchbase: https://www.crunchbase.com/organization/reevo-4b5e
extra:
linkedin_url: https://www.linkedin.com/company/reevo-cloud
- item:
name: Renesas Electronics Corporation
homepage_url: https://renesas.com/
logo: renesas_electronics_corporation.svg
description: Renesas Electronics Corporation delivers trusted embedded design innovation with complete semiconductor solutions that enable billions of connected, intelligent devices to enhance the way people work and livesecurely and safely. The number one global supplier of microcontrollers, and a leader in Analog & Power and SoC products, Renesas provides the expertise, quality, and comprehensive solutions for a broad range of Automotive, Industrial, Home Electronics (HE), Office Automation (OA) and Information Communication Technology (ICT) applications to help shape a limitless future.
crunchbase: https://www.crunchbase.com/organization/renesas-electronics-corporation
twitter: https://twitter.com/RenesasGlobal
extra:
linkedin_url: https://www.linkedin.com/company/renesas-electronics-corporation
- item:
name: ReversingLabs
homepage_url: https://reversinglabs.com/
logo: reversinglabs.svg
description: ReversingLabs offers explainable machine learning delivering the threat intelligence humans need to verify local threats and automate SOC processes.
crunchbase: https://www.crunchbase.com/organization/reversinglabs
twitter: https://twitter.com/ReversingLabs
extra:
linkedin_url: https://www.linkedin.com/company/reversinglabs
- item:
name: Root
homepage_url: https://root.io/
logo: root.svg
description: Because it sucks to go slow at building the apps that power EVERY business
crunchbase: https://www.crunchbase.com/organization/slim-ai
twitter: https://twitter.com/SlimDevOps
extra:
linkedin_url: https://www.linkedin.com/company/slim-ai-inc
- item:
name: RTX
homepage_url: https://rtx.com/
logo: rtx.svg
description: Raytheon Technologies Corporation is a multinational conglomerate headquartered in Waltham, Massachusetts United States.
crunchbase: https://www.crunchbase.com/organization/raytheon
twitter: https://twitter.com/RaytheonTech
extra:
linkedin_url: https://www.linkedin.com/company/raytheontechnologies
- item:
name: Salesforce.com, Inc.
homepage_url: https://salesforce.com/
logo: salesforce_com_inc.svg
description: Salesforce.com is an enterprise cloud computing company that is leading the shift to the social enterprise. Social enterprises leverage social, mobile and open cloud technologies to maximize customer support. Based on Salesforce.com's real-time, multi-tenant architecture, the company's platform and application services allow customers to create employee and customer social networks, empower small business and extend a company's social enterprise with applications.
crunchbase: https://www.crunchbase.com/organization/salesforce
twitter: https://twitter.com/salesforce
extra:
linkedin_url: https://www.linkedin.com/company/salesforce
- item:
name: SAP SE
homepage_url: https://sap.com/
logo: sap_se.svg
description: Founded in 1972, As a market leader in enterprise application software, SAP helps companies of all sizes and industries run better. From back office to boardroom, warehouse to storefront, desktop to mobile device, SAP empowers people and organizations to work together more efficiently and uses business insight more effectively to stay ahead of the competition. SAP applications and services enable more than 253,500 customers to operate profitably, adapt continuously, and grow sustainably.
crunchbase: https://www.crunchbase.com/organization/sap
twitter: https://twitter.com/SAP
extra:
linkedin_url: https://www.linkedin.com/company/sap
- item:
name: SHE BASH
homepage_url: https://shebash.io/
logo: she_bash.svg
description: 'Bringing much needed capacity to #DoD #DevSecOps.'
crunchbase: https://www.crunchbase.com/organization/she-bash-llc
twitter: https://twitter.com/SHEBASHIO
extra:
linkedin_url: https://www.linkedin.com/company/shebash
- item:
name: Shopify Inc.
homepage_url: https://shopify.com/
logo: shopify_inc.svg
description: Founded in 2004 and launched in 2006, Shopify is a leading cloud-based, multi-channel commerce platform designed for small and medium-sized businesses. Merchants can use the software to design, set up, and manage their stores across multiple sales channels, including web, mobile, social media, marketplaces, brick-and-mortar locations, and pop-up shops. The platform also provides merchants with a powerful back-office and a single view of their business. Shopify currently powers over 500,000 businesses in approximately 175 countries and is used by brands such as Red Bull, Nestle, GE, Kylie Cosmetics, and many more.
crunchbase: https://www.crunchbase.com/organization/shopify
twitter: https://twitter.com/Shopify
extra:
linkedin_url: https://www.linkedin.com/company/shopify
- item:
name: Snyk Limited
homepage_url: https://snyk.io/
logo: snyk_limited.svg
description: Snyk helps you use open source and stay secure. Continuously find and fix vulnerabilities for npm, Maven, NuGet, RubyGems, PyPI and much more.
crunchbase: https://www.crunchbase.com/organization/snyk
twitter: https://twitter.com/snyksec
extra:
linkedin_url: https://www.linkedin.com/company/snyk
- item:
name: Socket
homepage_url: https://socket.dev/
logo: socket.svg
description: Socket
twitter: https://twitter.com/SocketSecurity
organization:
name: Socket
linkedin: https://www.linkedin.com/company/socketinc
extra:
linkedin_url: https://www.linkedin.com/company/socketinc
- item:
name: Sparkfabrik srl
homepage_url: https://sparkfabrik.com/
logo: sparkfabrik_srl.svg
description: SparkFabrik - I maggiori esperti Drupal certificati in Italia. Drupal Milano, Consulenza Drupal, Acquia partner, Scrum Master certificati, Esperti Drupal in Italia, Sviluppatori web Milano, Applicazioni web Milano, Sviluppo agile, Pratiche devops, Svil...
crunchbase: https://www.crunchbase.com/organization/sparkfabrik
twitter: https://twitter.com/SparkFabrik
extra:
linkedin_url: https://www.linkedin.com/company/sparkfabrik
- item:
name: Spectro Cloud, Inc.
homepage_url: https://spectrocloud.com/
logo: spectro_cloud_inc.svg
description: Spectro Cloud delivers simplicity and control to organizations running Kubernetes at any scale. With its Palette platform, Spectro Cloud empowers businesses to deploy, manage, and scale Kubernetes clusters effortlessly — from edge to data center to cloud — while maintaining the freedom to build their perfect stack. Trusted by leading organizations worldwide, Spectro Cloud transforms Kubernetes complexity into elegant, scalable solutions, enabling customers to master their cloud-native journey with confidence.
crunchbase: https://www.crunchbase.com/organization/spectro-cloud
twitter: https://twitter.com/spectrocloudinc
extra:
linkedin_url: https://www.linkedin.com/company/spectro-cloud
- item:
name: Stacklok
homepage_url: https://stacklok.com/
logo: stacklok.svg
description: Stacklok's customers use the Model Context Protocol (MCP) to multiply the impact of their AI agents by securely connecting them to data and systems behind their corporate firewall. Stacklok's MCP Platform allows enterprises to curate a registry of trusted MCP servers, operate a secure gateway, scale MCP with Kubernetes and more. Stacklok's team helps maintain the official MCP registry and builds the popular, open source ToolHive MCP Platform with a growing community of contributors.
crunchbase: https://www.crunchbase.com/organization/stacklok
- item:
name: StepSecurity
homepage_url: https://stepsecurity.io/
logo: stepsecurity.svg
description: StepSecurity provides enhanced security solutions for GitHub Actions by offering maintained actions and robust runner runtime security, focusing on network egress filtering to protect CI/CD pipelines from potential vulnerabilities.
organization:
name: StepSecurity
linkedin: https://www.linkedin.com/company/step-security
extra:
linkedin_url: https://www.linkedin.com/company/step-security
- item:
name: SUSE LLC
homepage_url: https://suse.com/
logo: suse_llc.svg
description: SUSE provides businesses with software solutions. Some solutions they offer include data analytics, cloud management, infrastructure facilitation, and more.
crunchbase: https://www.crunchbase.com/organization/suse
twitter: https://twitter.com/SUSE
extra:
linkedin_url: https://www.linkedin.com/company/attachmate
- item:
name: Sysdig, Inc.
homepage_url: https://sysdig.com/
logo: sysdig_inc.svg
description: |-
Draios Inc. dba Sysdig
"Sysdig Cloud" is a SaaS monitoring, troubleshooting, and alerting suite designed from the ground up to provide deep, process-level visibility into distributed, containerized environments in the datacenter and cloud. Sysdig Cloud captures, correlates, and visualizes data from across every layer of your infrastructure enabling rapid troubleshooting and proactive performance management. The solution can be deployed in minutes with no configuration or plugins needed - it just works out of the box. Plus, Sysdig Cloud requires practically zero maintenance effort meaning Ops teams can spend more time on the fun part of their jobs. Try it free at sysdig.com.
crunchbase: https://www.crunchbase.com/organization/sysdig
twitter: https://twitter.com/sysdig
extra:
linkedin_url: https://www.linkedin.com/company/sysdig
- item:
name: Target Corporation
homepage_url: https://target.com/
logo: target_corporation.svg
description: Target Corporation's operations include large, general merchandise and food discount stores and a fully integrated on-line business. Target is traded on the NYSE under TGT.
crunchbase: https://www.crunchbase.com/organization/target-accelerator-2
twitter: https://twitter.com/Target
extra:
linkedin_url: https://www.linkedin.com/company/target
- item:
name: Technology Innovation Institute
homepage_url: https://tii.ae/
logo: technology_innovation_institute.svg
description: The Technology Innovation Institute (TII) aims to become a leading global research Centre dedicated to pushing the frontiers of knowledge. Our teams of scientists, researchers and engineers work in an open, flexible and agile environment to deliver dis...
twitter: https://twitter.com/TIIuae
organization:
name: Technology Innovation Institute
linkedin: https://www.linkedin.com/company/tiiuae
extra:
linkedin_url: https://www.linkedin.com/company/tiiuae
- item:
name: Thread AI
homepage_url: https://threadai.com/
logo: thread_ai.svg
description: Thread AI is an AI infrastructure company founded by AI product and engineering leaders from Palantir Technologies. Its AI workflow orchestration infrastructure, Lemma, enables regulated enterprises to build production-ready AI workflows and agents for their critical operations. It empowers enterprises to implement governed, reliable, and controlled AI-powered workflows without replacing their existing tech stack, providing the infrastructure for agents to reason, plan, and act within observable guardrails, at scale.
organization:
name: Thread AI
- item:
name: Trace Machina - Simulate Robotic Systems
homepage_url: https://tracemachina.com/
logo: trace_machina_simulate_robotic_systems.svg
description: Trace Machina is a company that specializes in building tools for ambitious engineering teams to accelerate automation.
organization:
name: Trace Machina - Simulate Robotic Systems
- item:
name: Trail of Bits
homepage_url: https://trailofbits.com/
logo: trail_of_bits.svg
description: Since 2012, Trail of Bits has helped secure some of the world’s most targeted organizations and products. We combine high-end security research with a real...
crunchbase: https://www.crunchbase.com/organization/trail-of-bits
twitter: https://twitter.com/trailofbits
extra:
linkedin_url: https://www.linkedin.com/company/trail-of-bits
- item:
name: Triam Security
homepage_url: https://cleanstart.com/
logo: triam_security.svg
description: |-
Triamsecurity is a leading provider of comprehensive security solutions for businesses. We offer a wide range of products and services to help protect your company from various threats. Our team of experts specializes in risk assessment, security consu...
--- Merged Data:
Triamsecurity is a leading provider of comprehensive security solutions for businesses. We offer a wide range of products and services to help protect your company from various threats. Our team of experts specializes in risk assessment, security consu...
crunchbase: https://www.crunchbase.com/organization/triam-security
extra:
linkedin_url: https://www.linkedin.com/company/triam-security
- item:
name: Wind River Systems, Inc.
homepage_url: https://windriver.com/
logo: wind_river_systems_inc.svg
description: Headquartered in Alameda, California, Wind River Systems develops embedded system software consisting of run-time software, industry-specific software, simulation technology, development tools and middleware.
crunchbase: https://www.crunchbase.com/organization/wind-river
twitter: https://twitter.com/WindRiver
extra:
linkedin_url: https://www.linkedin.com/company/wind-river
- item:
name: Xilinx Inc
homepage_url: https://xilinx.com/
logo: xilinx_inc.svg
description: Founded in 1984, Xilinx is a technology company that is primarily a supplier of programmable logic devices. Xilinx is the inventor of the FPGA, programmable SoCs, and now, the ACAP.
crunchbase: https://www.crunchbase.com/organization/xilinx
twitter: https://twitter.com/XilinxInc
extra:
linkedin_url: https://www.linkedin.com/company/xilinx
- subcategory:
name: Associate
items:
- item:
name: Carnegie Mellon University
homepage_url: https://cmu.edu/
logo: carnegie_mellon_university.svg
description: 'Carnegie Mellon University is a private research university in Pittsburgh, Pennsylvania. Carnegie Mellon has seven colleges and independent schools: the Carnegie Institute of Technology (engineering), College of Fine Arts, Dietrich College of Humanities and Social Sciences, Mellon College of Science, Tepper School of Business, H. John Heinz III College and the School of Computer Science. The College is recognized for its world-class arts and technology programs, collaboration across disciplines and innovative leadership in education.'
crunchbase: https://www.crunchbase.com/organization/carnegie-mellon-university
twitter: https://twitter.com/CarnegieMellon
extra:
linkedin_url: https://www.linkedin.com/company/carnegie-mellon-university
- item:
name: China Academy of Information and Communications Technology (CAICT)
homepage_url: https://caict.ac.cn/
logo: china_academy_of_information_and_communications_technology_caict.svg
description: |-
Founded in 1957, the China Academy of Information and Communications Technology (hereinafter referred to as “CAICT”) is a scientific research institute directly under the Ministry of Industry and Information Technology (MIIT) of China. While sticking to the positioning of “a specialized think-tank for the government, and an innovation and development platform for the industry” and cherishing the cultural philosophy of “boosting prosperity with virtues and expertise” for years, CAICT provides strong support for the industry’s major strategies,...
· Decision-Making Support
· Test beds
· Test and Certification
· Consultancy
· Regulation services
Business Departments
Policy and Economics Research Institute
Technology and Standards Research Institute
Industry and Planning Research Institute
Cloud Computing & Big Data Research Institute
Informatization and Industrialization Integration Research Institute
Security Research Institute
CTTL System Laboratory
CTTL Terminal labs
TL Certification Institute
ICT Project Quota & Quality Supervision Center
crunchbase: https://www.crunchbase.com/organization/china-academy-of-information-and-communication-technology
- item:
name: Eclipse Foundation AISBL.
homepage_url: https://eclipse.org/
logo: eclipse_foundation_aisbl.svg
description: |-
102 Centrepointe Drive
Ottawa, Ontario,
Canada, K2G 6B1
crunchbase: https://www.crunchbase.com/organization/eclipse-foundation
twitter: https://twitter.com/EclipseFdn
extra:
linkedin_url: https://www.linkedin.com/company/eclipse-foundation
- item:
name: Erlang Ecosystem Foundation
homepage_url: https://erlef.org/
logo: erlang_ecosystem_foundation.svg
description: Erlang Ecosystem Foundation supports and grows a diverse community and technology based on the BEAM, fostering collaboration and advancing Erlang, Elixir, LFE, and other BEAM-based technologies.
organization:
name: Erlang Ecosystem Foundation
linkedin: https://www.linkedin.com/company/erlef
extra:
linkedin_url: https://www.linkedin.com/company/erlef
- item:
name: FS-ISAC
homepage_url: https://fsisac.com/
logo: fs_isac.svg
description: An industry consortium dedicated to reducing cyber-risk in the global financial system.
crunchbase: https://www.crunchbase.com/organization/fs-isac
twitter: https://twitter.com/FSISAC
extra:
linkedin_url: https://www.linkedin.com/company/fs-isac
- item:
name: Institute of Software Chinese Academy of Sciences
homepage_url: https://iscas.ac.cn/
logo: institute_of_software_chinese_academy_of_sciences.svg
description: The Institute of Software, Chinese Academy of Sciences (ISCAS) is a research base that focuses on the research and development on theories of computer science and leading edge technologies of software.
crunchbase: https://www.crunchbase.com/organization/institute-of-software-chinese-academy-of-sciences
- item:
name: International Information System Security Certification Consortium Inc
homepage_url: https://isc2.org/
logo: international_information_system_security_certification_consortium_inc.svg
description: |-
ISC2 is the world’s leading member association for cybersecurity professionals. Our members, candidates and associates are leading the cybersecurity profession and safeguarding the way we live by creating a safe and secure cyber world. (ISC)² is an int...
--- Merged Data:
ISC2 is the world’s leading member association for cybersecurity professionals. Our members, candidates and associates are leading the cybersecurity profession and safeguarding the way we live by creating a safe and secure cyber world. (ISC)² is an int...
organization:
name: International Information System Security Certification Consortium Inc
linkedin: https://www.linkedin.com/company/isc2-bangkok-chapter
extra:
linkedin_url: https://www.linkedin.com/company/isc2-bangkok-chapter
- item:
name: Laboratory for Innovation Science at Harvard
homepage_url: https://lish.harvard.edu/
logo: laboratory_for_innovation_science_at_harvard.svg
description: Harvard University is a private Ivy League research university in Cambridge, Massachusetts.
crunchbase: https://www.crunchbase.com/organization/harvard-university
twitter: https://twitter.com/Harvard
extra:
linkedin_url: https://www.linkedin.com/company/harvard-university
- item:
name: Nanyang Technological University
homepage_url: https://ntu.edu.sg/
logo: nanyang_technological_university.svg
description: |-
The Nanyang Technological University, Singapore is the second oldest public autonomous research university in Singapore.
--- Merged Data:
With 33,500 students, and 10,000 faculty and staff, NTU is the second largest university in Singapore.
crunchbase: https://www.crunchbase.com/organization/nanyang-technological-university
twitter: https://twitter.com/NTUsg
extra:
linkedin_url: https://www.linkedin.com/company/ntusg
- item:
name: OpenForum Europe
homepage_url: https://openforumeurope.org/
logo: openforum_europe.svg
description: OpenForum Europe