-
Notifications
You must be signed in to change notification settings - Fork 30
/
processed_landscape.yml
11519 lines (11518 loc) · 453 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: .ORG
subcategories:
- subcategory:
name: .ORG
items:
- item:
name: Cloud Native Computing Foundation
homepage_url: https://www.cncf.io/
logo: cloud-native-computing-foundation.svg
twitter: https://twitter.com/cloudnativefdn
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
crunchbase_data:
name: Cloud Native Computing Foundation (CNCF)
description: CNCF is an open source software foundation that hosts and nurtures projects like Kubernetes and Prometheus.
num_employees_min: 11
num_employees_max: 50
homepage: https://www.cncf.io
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/CloudNativeFdn
linkedin: https://www.linkedin.com/company/cloud-native-computing-foundation
acquisitions:
- date: '2016-03-10'
acquiree: Kubernetes
- date: '2017-02-06'
acquiree: RethinkDB
parents:
- https://www.crunchbase.com/organization/linux-foundation
funding: 3000000
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Cloud Infrastructure
- Non Profit
- Open Source
- Software
kind: funding
image_data:
fileName: cloud-native-computing-foundation.svg
hash: qlj7DrhZd0IT0IPfwC+ukL7x6QBQCFOWXT3CV6agyBw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T17:05:02.000Z
- item:
name: Open Compute Project Foundation
homepage_url: https://www.opencompute.org/
logo: open-compute-project-foundation.svg
crunchbase: https://www.crunchbase.com/organization/open-compute-project-foundation
crunchbase_data:
name: Open Compute Project Foundation
description: Open Compute Project Foundation is a rapidly growing community of engineers around the world whose mission is to design
num_employees_min: 1
num_employees_max: 10
homepage: http://www.opencompute.org
city: Palo Alto
region: California
country: United States
twitter: http://twitter.com/Opencomputeprj
linkedin: https://www.linkedin.com/groups/4152886/profile
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Infrastructure
- Innovation Management
- Open Source
image_data:
fileName: open-compute-project-foundation.svg
hash: 5XqAsjUfZ+DRJ8fA6nCpAC80xtVgIEqgZen0/3Nz9TI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T13:18:37.000Z
- item:
name: Open Edge Computing Initiative
homepage_url: https://www.openedgecomputing.org/
logo: openEdgeComputingInitative.svg
crunchbase: https://www.crunchbase.com/organization/open-edge-computing-initiative
crunchbase_data:
name: Open Edge Computing Initiative
description: A collective effort by multiple companies, driving the business opportunities and technologies surrounding edge computing
num_employees_min: null
num_employees_max: null
homepage: https://www.openedgecomputing.org/
city: Karlsruhe
region: Baden-Wurttemberg
country: Germany
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
image_data:
fileName: open-edge-computing-initiative.svg
hash: CynM/ENKadQGVnW8RPWt7+5901vZqu/QWIpFM4wFN5g=
best_practice_data:
badge: false
percentage: null
- item:
name: Open Glossary of Edge Computing
homepage_url: https://www.lfedge.org/openglossary
project: growth
repo_url: https://github.com/State-of-the-Edge/glossary
logo: open-glossary-of-edge-computing.svg
twitter: https://twitter.com/LF_Edge
crunchbase: https://www.crunchbase.com/organization/lf-edge
crunchbase_data:
name: Linux Foundation Edge
description: Linux Foundation Edge is an umbrella organization that aims to establish an open, interoperable framework.
num_employees_min: 11
num_employees_max: 50
homepage: https://www.lfedge.org/
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/lf_edge
linkedin: https://www.linkedin.com/company/lf-edge/
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: For Profit
industries:
- Cloud Computing
- Information Technology
- Open Source
- Software
github_data:
languages: []
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-11-12Z
stars: 181
license: Other
description: >-
The Linux Foundation's Open Glossary of Edge Computing project curates and defines terms related to the field of edge computing, collecting
common and accepted definitions into an openly licensed repository.
latest_commit_date: '2020-07-11T13:22:39Z'
latest_commit_link: /State-of-the-Edge/glossary/commit/37f2d64ef613e3e596f78a7bc615240383700e76
release_date: '2019-09-03T16:12:07Z'
release_link: https://github.com/State-of-the-Edge/glossary/releases
contributors_count: 9
contributors_link: https://github.com/State-of-the-Edge/glossary/graphs/contributors
repos:
- url: https://github.com/State-of-the-Edge/glossary
stars: 181
github_start_commit_data:
start_commit_link: /lf-edge/glossary/commit/94da828cf86671fc7d8fd16002cabe1faee065e9
start_date: '2018-06-08T15:38:41Z'
image_data:
fileName: open-glossary-of-edge-computing.svg
hash: xiOcVJh9YyOvWc3dRCLqPHMuT/789HZIj/rtcbW4cto=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T17:36:15.000Z
- item:
name: Open Infrastructure Foundation
homepage_url: https://www.openstack.org/
logo: OIF.svg
twitter: https://twitter.com/openinfradev
crunchbase: https://www.crunchbase.com/organization/openstack
crunchbase_data:
name: OpenStack
description: OpenStack is the most widely used open source software for building public and private clouds.
num_employees_min: 11
num_employees_max: 50
homepage: http://www.openstack.org
city: Austin
region: Texas
country: United States
twitter: http://twitter.com/OpenStack
linkedin: https://www.linkedin.com/company/openstack
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Enterprise Software
- Open Source
- Software
image_data:
fileName: open-infrastructure-foundation.svg
hash: 0l430/AE2sBoTTBQpEllTmmYh3TjOWG3vr/rQr2ekLE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T11:48:37.000Z
- item:
name: Open-IX
homepage_url: https://open-ix.org/en/
logo: open-ix.svg
twitter: https://twitter.com/OpenIX
crunchbase: https://www.crunchbase.com/organization/open-ix
crunchbase_data:
name: Open-IX
description: The Open-IX Association (OIX) is an Internet community-derived effort to improve the landscape of Internet peering and interconnect.
num_employees_min: 501
num_employees_max: 1000
homepage: http://www.open-ix.org
city: Cambridge
region: Massachusetts
country: United States
twitter: http://twitter.com/OpenIXNA
linkedin: https://www.linkedin.com/company/open-ix-association
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries: []
image_data:
fileName: open-ix.svg
hash: Csn1hdbpjAD8lls4JRUFm89o4GbwWxEdrT9pzakbzCk=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-05-26T15:14:08.000Z
- item:
name: Open19 Foundation
homepage_url: https://www.open19.org/
logo: open19.svg
twitter: https://twitter.com/open19in
crunchbase: https://www.crunchbase.com/organization/open19-foundation
crunchbase_data:
name: Open19 Foundation
description: A community working to enable common optimized data centers and edge solutions through efficiency and flexibility.
num_employees_min: null
num_employees_max: null
homepage: https://www.open19.org/
city: Beaverton
region: Oregon
country: United States
twitter: null
linkedin: https://www.linkedin.com/company/open19-foundation/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Communities
- Information Technology
image_data:
fileName: open19-foundation.svg
hash: 9F7/bkRyBN/MuzONvvzyKj8dBRCEmcu6gUTgCuFsp6I=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-02-21T17:00:01.000Z
- item:
name: Wireless Infrastructure Association
homepage_url: https://wia.org/
logo: wia.svg
crunchbase: https://www.crunchbase.com/organization/the-wireless-infrastructure-association
crunchbase_data:
name: The Wireless Infrastructure Association
description: The Wireless Infrastructure Association represents the companies that make up the wireless infrastructure ecosystem in the United States.
num_employees_min: 101
num_employees_max: 250
homepage: http://wia.org/
city: Alexandria
region: Virginia
country: United States
twitter: https://www.twitter.com/wiaorg
linkedin: https://www.linkedin.com/company/wireless-infrastructure-association
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Association
- Telecommunications
image_data:
fileName: wireless-infrastructure-association.svg
hash: bPdej/1OYzrXYUtdelFx7OkcwjfSM4zCUUTcayYn/x0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T15:59:45.000Z
- item:
name: Zephyr Project
homepage_url: https://www.zephyrproject.org/
logo: zephyr.svg
crunchbase: https://www.crunchbase.com/organization/zephy-project
crunchbase_data:
name: Zephyr Project
description: The Zephyr™ Project is a scalable real-time operating system.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.zephyrproject.org/
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/zephyriot
linkedin: https://www.linkedin.com/company/the-zephyr-project/about/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Computer
- Information Technology
- Software
image_data:
fileName: zephyr-project.svg
hash: GXVWQI2FitAdvoz7vwl/e6h3iGVxroC1TzAgZAP3N+M=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T17:44:59.000Z
- category:
name: Traffic Routing
subcategories:
- subcategory:
name: Traffic Routing
items:
- item:
name: NS1
homepage_url: https://my.nsone.net
logo: ns1.svg
twitter: https://twitter.com/NS1
crunchbase: https://www.crunchbase.com/organization/ns1
crunchbase_data:
name: NS1
description: NS1 is an internet company that provides accurate control over application delivery that values interaction with customers.
num_employees_min: 101
num_employees_max: 250
homepage: https://ns1.com/
city: New York
region: New York
country: United States
twitter: http://twitter.com/ns1
linkedin: https://www.linkedin.com/company/3189558/
acquisitions: []
parents: []
funding: 118350000
stockExchange: null
company_type: For Profit
industries:
- DevOps
- Internet
- Software
- Web Hosting
kind: funding
image_data:
fileName: ns1.svg
hash: JKj3r6Q2VNTR/vKxyQd/s4QzyEG6XRnUyNYc4sYAnns=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T15:11:02.000Z
- item:
name: VyOS
homepage_url: https://vyos.io/
repo_url: https://github.com/vyos/vyos-build
logo: vyos.svg
crunchbase: https://www.crunchbase.com/organization/vyos
crunchbase_data:
name: VyOS
description: VyOS is a Linux-based network operating system that provides software-based network routing, firewall, and VPN functionality.
num_employees_min: 11
num_employees_max: 50
homepage: https://www.vyos.io/
city: Poway
region: California
country: United States
twitter: https://twitter.com/vyos_dev
linkedin: https://linkedin.com/company/vyos
acquisitions:
- date: '2024-10-09'
acquiree: Sentrium
parents: []
stockExchange: null
company_type: For Profit
industries:
- Cloud Infrastructure
- Data Center
- Network Hardware
- Network Security
- Software
github_data:
languages:
- name: Python
value: 106585
color: '#3572A5'
- name: Shell
value: 62070
color: '#89e051'
- name: Groovy
value: 29131
color: '#e69f56'
- name: Dockerfile
value: 16870
color: '#384d54'
- name: Go
value: 4444
color: '#00ADD8'
- name: Makefile
value: 2203
color: '#427819'
contributions: 7;4;7;4;6;12;5;3;6;3;3;7;7;9;4;13;9;9;10;11;13;18;19;9;11;25;16;11;12;6;8;7;10;9;5;7;20;9;3;3;4;4;16;17;18;10;16;25;5;12;8;7
firstWeek: 2023-11-12Z
stars: 1013
license: GNU General Public License v2.0
description: VyOS image build scripts
latest_commit_date: '2024-11-06T21:25:10Z'
latest_commit_link: /vyos/vyos-build/commit/33f15da7d481f7fc1b43266ae3cc89234a5a80ea
contributors_count: 86
contributors_link: https://github.com/vyos/vyos-build/graphs/contributors
repos:
- url: https://github.com/vyos/vyos-build
stars: 1013
github_start_commit_data:
start_commit_link: /vyos/vyos-build/commit/8e71eae3a2323aacd12e4a484dfd3773c9d7cf03
start_date: '2015-12-16T21:02:03Z'
image_data:
fileName: vy-os.svg
hash: CQzi8Pgp8NLOXJLsK1fqMKdaXGoMomyJgdMwiHYKKWQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-01T00:00:50.000Z
- category:
name: Platforms
subcategories:
- subcategory:
name: Communication Service Provider
items:
- item:
name: Akraino
homepage_url: https://www.lfedge.org/projects/akraino
project: impact
repo_url: https://github.com/akraino-edge-stack/eliot
logo: akraino-new.svg
twitter: https://twitter.com/LF_Edge
crunchbase: https://www.crunchbase.com/organization/lf-edge
crunchbase_data:
name: Linux Foundation Edge
description: Linux Foundation Edge is an umbrella organization that aims to establish an open, interoperable framework.
num_employees_min: 11
num_employees_max: 50
homepage: https://www.lfedge.org/
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/lf_edge
linkedin: https://www.linkedin.com/company/lf-edge/
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: For Profit
industries:
- Cloud Computing
- Information Technology
- Open Source
- Software
github_data:
languages:
- name: Shell
value: 153243
color: '#89e051'
- name: Go
value: 48003
color: '#00ADD8'
- name: Dockerfile
value: 1632
color: '#384d54'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-11-12Z
stars: 0
license: Unknown License
description: null
latest_commit_date: '2022-03-14T01:56:17Z'
latest_commit_link: /akraino-edge-stack/eliot/commit/17770356db8dc3aae9be44cac8fbaae61080f8d2
contributors_count: 10
contributors_link: https://github.com/akraino-edge-stack/eliot/graphs/contributors
repos:
- url: https://github.com/akraino-edge-stack/eliot
stars: 0
github_start_commit_data:
start_commit_link: /akraino-edge-stack/eliot/commit/1c3e0d723e5889b6e46aee1eb3afd682eece79a5
start_date: '2019-01-31T02:04:52Z'
image_data:
fileName: akraino.svg
hash: hBPWxODKfjY2IUZ81EuyvmAYzQrsSxVkXC2V8bfmuFw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T17:36:15.000Z
- subcategory:
name: CDN & Distributed Caches
items:
- item:
name: Akamai
homepage_url: https://www.akamai.com
logo: akamai.svg
crunchbase: https://www.crunchbase.com/organization/akamai-technologies
crunchbase_data:
name: Akamai Technologies
description: Akamai is a provider of cloud services that help enterprises provide secure, high-performing user experiences on any device.
num_employees_min: 5001
num_employees_max: 10000
homepage: https://www.akamai.com
city: Cambridge
region: Massachusetts
country: United States
twitter: http://twitter.com/Akamai
linkedin: https://www.linkedin.com/company/akamai-technologies
acquisitions:
- date: '2000-01-18'
acquiree: Network24 Communications
- date: '2000-02-07'
acquiree: Intervu
- date: '2000-07-25'
acquiree: CallTheShots
- date: '2005-06-01'
acquiree: Speedera Networks
- date: '2006-11-20'
acquiree: Nine Systems Corp
- date: '2006-12-13'
acquiree: Streaming Media Corporation
- date: '2007-02-05'
acquiree: Netli
- date: '2007-04-12'
acquiree: Red Swoosh
- date: '2008-10-21'
acquiree: acerno
- date: '2010-06-10'
acquiree: Velocitude
- date: '2011-11-27'
acquiree: Cotendo
- date: '2012-02-08'
acquiree: Blaze.io
- date: '2012-09-13'
acquiree: FastSoft
- date: '2012-11-13'
acquiree: Verivue
- date: '2013-11-11'
acquiree: Velocius Networks
- date: '2013-12-02'
acquiree: Prolexic Technologies
- date: '2015-04-06'
acquiree: Octoshape
- date: '2015-11-02'
acquiree: Bloxx
- date: '2016-09-28'
acquiree: Concord Systems
- date: '2016-10-04'
acquiree: SOHA SYSTEMS
- date: '2016-12-19'
acquiree: Cyberfend
- date: '2017-03-29'
acquiree: SOASTA
- date: '2017-10-11'
acquiree: Nominum
- date: '2017-11-03'
acquiree: Xerocole
- date: '2019-01-07'
acquiree: Janrain
- date: '2019-09-10'
acquiree: Exceda
- date: '2019-09-23'
acquiree: krypt.co
- date: '2019-10-09'
acquiree: ChameleonX
- date: '2020-10-27'
acquiree: Asavie Technologies
- date: '2021-02-01'
acquiree: Inverse
- date: '2021-09-29'
acquiree: Guardicore
- date: '2022-02-15'
acquiree: Linode
- date: '2023-03-02'
acquiree: Ondat
- date: '2023-04-19'
acquiree: Neosec
- date: '2024-05-07'
acquiree: Noname Security
parents: []
ticker: AKAM
funding: 1135000000
stockExchange: nasdaq
company_type: For Profit
industries:
- Cyber Security
- Digital Media
- SaaS
- Software
- Video Streaming
yahoo_finance_data:
effective_ticker: AKAM
image_data:
fileName: akamai.svg
hash: K2a4VvMTVhU6xDuhAy8ejj1zTinoQoF4mghGuNuHKpI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-06-02T15:20:03.000Z
- item:
name: Amazon Cloudfront
description: >-
Amazon CloudFront is a fast content delivery network (CDN) service that securely delivers data, videos, applications, and APIs to customers
globally with low latency, high transfer speeds, all within a developer-friendly environment.
homepage_url: https://aws.amazon.com/cloudfront/
logo: amazon-cloudfront.svg
twitter: https://twitter.com/cloudfront
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
crunchbase_data:
name: Amazon Web Services
description: Amazon Web Services provides information technology infrastructure services to businesses in the form of web services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: http://aws.amazon.com
city: Seattle
region: Washington
country: United States
twitter: https://x.com/awscloud
linkedin: https://www.linkedin.com/company/amazon-web-services
acquisitions:
- date: '2015-07-14'
acquiree: AppThwack
- date: '2016-02-11'
acquiree: NICE
- date: '2017-03-06'
acquiree: Thinkbox Software
- date: '2017-03-08'
acquiree: Do
- date: '2018-01-23'
acquiree: Sqrrl
- date: '2019-01-14'
acquiree: TSO Logic
- date: '2020-02-21'
acquiree: TeamSQL, Inc.
- date: '2021-01-28'
acquiree: DB Best Technologies
- date: '2021-06-25'
acquiree: Wickr
parents:
- https://www.crunchbase.com/organization/amazon
ticker: AMZN
funding: 8108000000
stockExchange: null
company_type: For Profit
industries:
- Computer
- Consulting
- DevOps
- Information Services
- Information Technology
- Internet
- Service Industry
- Software
- Web Development
yahoo_finance_data:
effective_ticker: AMZN
image_data:
fileName: amazon-cloudfront.svg
hash: TpNv7NARwq0AUnmqU2AP9+AQCCM8C3Rw3pyn1kBW+A4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-05-24T19:16:58.000Z
- item:
name: Cisco SD-WAN
homepage_url: https://www.cisco.com/c/en/us/solutions/enterprise-networks/sd-wan/index.html
logo: cisco-sd-wan.svg
crunchbase: https://www.crunchbase.com/organization/cisco
crunchbase_data:
name: Cisco
description: Cisco develops, manufactures, and sells networking hardware, telecommunications equipment, and other technology services and products.
num_employees_min: 10001
num_employees_max: 1000000
homepage: http://www.cisco.com
city: San Jose
region: California
country: United States
twitter: https://www.twitter.com/cisco
linkedin: https://www.linkedin.com/company/cisco
acquisitions:
- date: '1993-09-24'
acquiree: Crescendo Communications
- date: '1994-07-12'
acquiree: Newport Systems Solutions
- date: '1994-10-24'
acquiree: Kalpana
- date: '1994-12-08'
acquiree: LightStream Corporation
- date: '1995-08-10'
acquiree: Combinet
- date: '1995-09-06'
acquiree: Internet Junction
- date: '1995-09-28'
acquiree: Grand Junction Networks
- date: '1995-10-27'
acquiree: Network Translation
- date: '1996-01-23'
acquiree: TGV Software
- date: '1996-04-09'
acquiree: Granite Systems
- date: '1996-04-22'
acquiree: StrataCom
- date: '1996-07-23'
acquiree: Telebit
- date: '1996-08-06'
acquiree: Nashoba Networks
- date: '1996-10-14'
acquiree: NetSys Technologies
- date: '1996-11-22'
acquiree: Metaplex
- date: '1997-03-27'
acquiree: Telesend
- date: '1997-06-09'
acquiree: Skystone Systems
- date: '1997-06-24'
acquiree: Ardent Communications
- date: '1997-06-24'
acquiree: Global Internet Software Group
- date: '1997-07-29'
acquiree: DAGAZ Technologies
- date: '1997-12-22'
acquiree: LightSpeed International
- date: '1998-02-18'
acquiree: WheelGroup
- date: '1998-03-10'
acquiree: NetSpeed
- date: '1998-03-11'
acquiree: Precept Software
- date: '1998-05-04'
acquiree: CLASS Data Systems
- date: '1998-07-28'
acquiree: Summa Four
- date: '1998-08-21'
acquiree: American Internet Corporation
- date: '1998-09-15'
acquiree: Clarity Wireless
- date: '1998-12-02'
acquiree: PipeLinks
- date: '1999-02-24'
acquiree: Selsius Systems
- date: '1999-04-08'
acquiree: Fibex Systems
- date: '1999-04-08'
acquiree: Sentient Networks
- date: '1999-04-13'
acquiree: GeoTel Communications
- date: '1999-04-28'
acquiree: Amteva Technologies
- date: '1999-06-17'
acquiree: TransMedia Communications
- date: '1999-06-29'
acquiree: StratumOne Communications
- date: '1999-08-16'
acquiree: CALISTA
- date: '1999-08-18'
acquiree: Maxcomm Technologies
- date: '1999-08-26'
acquiree: Cerent
- date: '1999-08-26'
acquiree: MONTEREY NETWORKS
- date: '1999-09-15'
acquiree: Cocom
- date: '1999-09-22'
acquiree: WebLine Communications
- date: '1999-10-26'
acquiree: Tasmania Network Systems
- date: '1999-11-09'
acquiree: Aironet Wireless Communications
- date: '1999-11-11'
acquiree: V-Bits
- date: '1999-12-16'
acquiree: Worldwide Data Systems
- date: '1999-12-17'
acquiree: Internet Engineering Group
- date: '1999-12-20'
acquiree: Pirelli Optical Systems
- date: '2000-01-19'
acquiree: Altiga Networks
- date: '2000-01-20'
acquiree: Compatible Systems
- date: '2000-02-16'
acquiree: Growth Networks
- date: '2000-03-01'
acquiree: Atlantech Technologies
- date: '2000-03-16'
acquiree: JetCell
- date: '2000-03-17'
acquiree: InfoGear Technology
- date: '2000-03-19'
acquiree: SightPath
- date: '2000-04-11'
acquiree: Pentacom
- date: '2000-04-12'
acquiree: Seagull Semiconductor
- date: '2000-05-05'
acquiree: ArrowPoint Communications
- date: '2000-05-12'
acquiree: Qeyton Systems
- date: '2000-06-05'
acquiree: HyNEX
- date: '2000-07-07'
acquiree: Netiverse
- date: '2000-07-25'
acquiree: Komodo Technology
- date: '2000-07-27'
acquiree: NuSpeed Internet Systems
- date: '2000-08-01'
acquiree: IPmobile
- date: '2000-08-31'
acquiree: PixStream
- date: '2000-09-28'
acquiree: IPCell Technologies
- date: '2000-09-28'
acquiree: Vovida Networks
- date: '2000-10-20'
acquiree: CAIS Software Solutions
- date: '2000-11-10'
acquiree: Active Voice Corporation
- date: '2000-11-13'
acquiree: Radiata
- date: '2000-12-14'
acquiree: ExiO Communications
- date: '2001-07-16'
acquiree: AuroraNetics
- date: '2001-07-27'
acquiree: Allegro Systems
- date: '2002-05-01'
acquiree: Hammerhead Networks
- date: '2002-05-01'
acquiree: Navarro Networks
- date: '2002-07-25'
acquiree: AYR Networks
- date: '2002-08-20'
acquiree: Andiamo Systems
- date: '2002-10-22'
acquiree: Psionic Software
- date: '2003-01-24'
acquiree: Okena
- date: '2003-03-19'
acquiree: SignalWorks
- date: '2003-03-20'
acquiree: The Linksys Group
- date: '2003-11-12'
acquiree: Latitude Communications
- date: '2004-03-12'
acquiree: Twingo Systems
- date: '2004-03-23'
acquiree: Riverhead Networks
- date: '2004-06-18'
acquiree: Procket Networks
- date: '2004-06-29'
acquiree: Actona Technologies
- date: '2004-07-08'
acquiree: Parc Technologies
- date: '2004-08-23'
acquiree: P-Cube
- date: '2004-09-09'
acquiree: NetSolve
- date: '2004-09-13'
acquiree: DynamicSoft
- date: '2004-10-21'
acquiree: Perfigo
- date: '2004-11-17'
acquiree: Jahi Networks
- date: '2004-12-09'
acquiree: BCN Systems
- date: '2004-12-20'
acquiree: Protego Networks
- date: '2005-03-23'
acquiree: Airespace
- date: '2005-04-14'
acquiree: Topspin Communications
- date: '2005-04-26'
acquiree: Sipura Technology
- date: '2005-05-23'
acquiree: Vihana
- date: '2005-05-26'
acquiree: FineGround Networks
- date: '2005-06-14'
acquiree: M. I. Secure Corporation
- date: '2005-06-27'
acquiree: NetSift
- date: '2005-07-22'
acquiree: KiSS Technology
- date: '2005-07-26'
acquiree: Sheer Networks
- date: '2005-09-30'
acquiree: Nemo Systems
- date: '2005-11-18'
acquiree: Scientific Atlanta
- date: '2005-11-29'
acquiree: Intellishield Alert Manager
- date: '2006-03-07'
acquiree: Sypixx Networks
- date: '2006-06-08'
acquiree: Audium
- date: '2006-06-28'
acquiree: Metreos Corporation
- date: '2006-07-06'
acquiree: Meetinghouse Data Communications
- date: '2006-08-21'
acquiree: Arroyo Video Solutions
- date: '2006-10-10'
acquiree: Ashley Laurent
- date: '2006-10-25'
acquiree: Orative Corporation
- date: '2006-11-13'
acquiree: Greenfield Networks
- date: '2006-12-15'
acquiree: Tivella
- date: '2007-01-01'
acquiree: Qovia
- date: '2007-01-04'
acquiree: IronPort Systems
- date: '2007-02-08'
acquiree: FiveAcross
- date: '2007-02-21'
acquiree: Reactivity
- date: '2007-03-02'
acquiree: Tribe
- date: '2007-03-13'
acquiree: NeoPath Networks
- date: '2007-03-15'
acquiree: Webex
- date: '2007-03-28'
acquiree: Spans Logic
- date: '2007-05-22'
acquiree: BroadWare Technologies
- date: '2007-09-18'
acquiree: Cognio
- date: '2007-09-27'
acquiree: Latigent
- date: '2007-10-23'
acquiree: Navini Networks
- date: '2007-11-01'
acquiree: Securent
- date: '2008-05-01'
acquiree: Fast Data Technology
- date: '2008-05-01'
acquiree: Nuova Systems
- date: '2008-06-10'
acquiree: DiviTech A/S
- date: '2008-07-22'
acquiree: Pure Networks
- date: '2008-08-27'
acquiree: PostPath
- date: '2008-09-19'
acquiree: Jabber
- date: '2009-01-27'
acquiree: Richards-Zeta Building Intelligence
- date: '2009-03-19'
acquiree: Pure Digital Technologies
- date: '2009-05-20'
acquiree: Tidal Software
- date: '2009-10-01'
acquiree: Tandberg
- date: '2009-10-27'
acquiree: ScanSafe
- date: '2009-11-02'
acquiree: DVN - set-top box business
- date: '2009-12-18'
acquiree: Starent Networks
- date: '2010-01-05'
acquiree: Rohati Systems
- date: '2010-05-18'
acquiree: MOTO Development Group
- date: '2010-05-20'
acquiree: CoreOptics
- date: '2010-08-26'
acquiree: ExtendMedia
- date: '2010-09-20'
acquiree: Arch Rock Corporation
- date: '2010-12-13'
acquiree: LineSider Technologies
- date: '2011-02-04'
acquiree: Inlet Technologies
- date: '2011-03-02'
acquiree: Pari Networks