-
Notifications
You must be signed in to change notification settings - Fork 1
/
processed_landscape.yml
13047 lines (13047 loc) · 513 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: DevOps
subcategories:
- subcategory:
name: DevOps
items:
- item:
name: Argo
homepage_url: https://argoproj.github.io/
repo_url: https://github.com/argoproj/argo-workflows
logo: argo.svg
twitter: https://twitter.com/argoproj
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
price: 25000
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
github_data:
languages:
- name: Go
value: 3341336
color: '#00ADD8'
- name: TypeScript
value: 634474
color: '#2b7489'
- name: Makefile
value: 35056
color: '#427819'
- name: SCSS
value: 29868
- name: Shell
value: 12255
color: '#89e051'
- name: Dockerfile
value: 7463
color: '#384d54'
- name: Python
value: 6666
color: '#3572A5'
- name: JavaScript
value: 3603
color: '#f1e05a'
- name: Java
value: 2559
color: '#b07219'
- name: Procfile
value: 1033
- name: HTML
value: 472
color: '#e34c26'
contributions: >-
6;40;28;35;8;14;8;14;13;14;3;0;14;9;26;28;25;25;24;28;25;18;32;24;24;18;34;26;30;38;37;17;23;8;12;14;25;17;9;15;24;11;22;16;16;17;23;21;12;16;25;17
firstWeek: 2021-10-17Z
stars: 11819
license: Apache License 2.0
description: Workflow engine for Kubernetes
latest_commit_date: '2022-10-08T15:36:33Z'
latest_commit_link: /argoproj/argo-workflows/commit/a8e37e9bea5d586f8b1811fcbb8df668d00bdb31
release_date: '2022-10-01T16:09:34Z'
release_link: https://github.com/argoproj/argo-workflows/releases
contributors_count: 649
contributors_link: https://github.com/argoproj/argo-workflows/graphs/contributors
repos:
- url: https://github.com/argoproj/argo-workflows
stars: 11819
github_start_commit_data:
start_commit_link: /argoproj/argo/commit/3ed1dfeb073829d3c4f92b95c9a74118caaec1b4
start_date: '2017-10-17T21:38:48Z'
image_data:
fileName: argo.svg
hash: Xb4OvEH8Blm9GmWInFZZnx2Q0rUDurtM1rkRrRtlJEc=
best_practice_data:
badge: 3830
percentage: 100
twitter_data:
latest_tweet_date: 2022-10-05T18:16:45.000Z
- item:
name: CircleCI
homepage_url: https://circleci.com/
repo_url: https://github.com/circleci/circleci-docs
logo: circle-ci.svg
crunchbase: https://www.crunchbase.com/organization/circle-ci
crunchbase_data:
name: CircleCI
description: CircleCI is a continuous integration and delivery platform that automates development workflows and IT operations.
num_employees_min: 501
num_employees_max: 1000
homepage: https://circleci.com
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/circleci
linkedin: https://www.linkedin.com/company/circleci
acquisitions:
- date: '2014-12-17'
acquiree: Distiller
- date: '2021-05-11'
acquiree: Vamp.io
- date: '2022-03-09'
acquiree: Ponicode
parents: []
funding: 315000000
stockExchange: null
company_type: For Profit
industries:
- Cloud Computing
- Developer Tools
- Information Technology
- PaaS
- Productivity Tools
- SaaS
- Software
kind: funding
github_data:
languages:
- name: JavaScript
value: 531796
color: '#f1e05a'
- name: SCSS
value: 288282
- name: HTML
value: 95921
color: '#e34c26'
- name: Ruby
value: 16857
color: '#701516'
- name: Shell
value: 14284
color: '#89e051'
- name: Python
value: 8862
color: '#3572A5'
- name: Clojure
value: 4616
color: '#db5855'
- name: Handlebars
value: 1939
- name: CSS
value: 1340
color: '#563d7c'
- name: Dockerfile
value: 269
color: '#384d54'
contributions: >-
144;308;106;338;72;108;65;342;88;108;200;76;115;205;188;180;200;224;255;130;255;264;277;244;242;401;273;125;290;192;156;144;304;253;342;222;165;281;218;637;342;434;251;230;450;233;217;228;162;106;503;156
firstWeek: 2021-10-17Z
stars: 679
license: Unknown License
description: Documentation for CircleCI.
latest_commit_date: '2022-10-07T17:41:46Z'
latest_commit_link: /circleci/circleci-docs/commit/9afeaacba3d4f905530bc4aee1c24f44c6bdce4c
contributors_count: 812
contributors_link: https://github.com/circleci/circleci-docs/graphs/contributors
repos:
- url: https://github.com/circleci/circleci-docs
stars: 679
github_start_commit_data:
start_commit_link: /circleci/circleci-docs/commit/93893a57b836ccfe173cf130e87a09bc1dab19b4
start_date: '2016-03-15T22:04:34Z'
image_data:
fileName: circle-ci.svg
hash: H8lvsFywp6u/aOf00kg+1DcsgfR/Z7ysVabFkNfNMto=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-10-07T20:54:14.000Z
- item:
name: GitLab
homepage_url: https://about.gitlab.com/
repo_url: https://github.com/gitlabhq/gitlabhq
url_for_bestpractices: https://gitlab.com/gitlab-org/gitlab-ce
logo: gitlab.svg
crunchbase: https://www.crunchbase.com/organization/gitlab-com
crunchbase_data:
name: GitLab
description: GitLab is the DevOps platform that helps organizations to maximize the overall return on software development.
num_employees_min: 1001
num_employees_max: 5000
homepage: http://about.gitlab.com
city: San Francisco
region: California
country: United States
twitter: http://twitter.com/gitlab
linkedin: https://www.linkedin.com/company/gitlab-com
acquisitions:
- date: '2015-03-03'
acquiree: Gitorious
- date: '2017-03-15'
acquiree: Gitter
- date: '2018-01-30'
acquiree: Gemnasium (acquired by Gitlab)
- date: '2020-06-11'
acquiree: Fuzzit
- date: '2020-06-11'
acquiree: Peach Tech
- date: '2021-06-02'
acquiree: UnReview
- date: '2021-12-14'
acquiree: Opstrace
parents: []
ticker: GTLB
funding: 413500000
stockExchange: nasdaq
company_type: For Profit
industries:
- Cloud Security
- Developer Tools
- Open Source
- SaaS
kind: market_cap
github_data:
languages:
- name: Ruby
value: 55665746
color: '#701516'
- name: JavaScript
value: 15075222
color: '#f1e05a'
- name: Vue
value: 5296270
color: '#2c3e50'
- name: PLpgSQL
value: 2588294
- name: Haml
value: 1634490
- name: SCSS
value: 901966
- name: Go
value: 753562
color: '#00ADD8'
- name: Shell
value: 113522
color: '#89e051'
- name: HTML
value: 107877
color: '#e34c26'
- name: Makefile
value: 6468
color: '#427819'
- name: CSS
value: 5043
color: '#563d7c'
- name: Dockerfile
value: 2345
color: '#384d54'
- name: PowerShell
value: 575
color: '#012456'
- name: Smarty
value: 385
- name: Clojure
value: 79
color: '#db5855'
contributions: >-
41;46;43;47;42;45;41;43;45;45;41;27;36;44;45;43;43;46;41;44;44;45;44;41;44;44;42;41;42;48;42;44;41;46;46;41;42;43;45;40;44;42;43;44;44;41;42;44;47;46;38;41
firstWeek: 2021-10-17Z
stars: 23046
license: Other
description: GitLab CE Mirror | Please open new issues in our issue tracker on GitLab.com
latest_commit_date: '2022-10-08T18:09:01Z'
latest_commit_link: /gitlabhq/gitlabhq/commit/1f794fa428465f9bf3ec3c53b253d22762d41811
contributors_count: 2997
contributors_link: https://github.com/gitlabhq/gitlabhq/graphs/contributors
repos:
- url: https://github.com/gitlabhq/gitlabhq
stars: 23046
github_start_commit_data:
start_commit_link: /gitlabhq/gitlabhq/commit/93efff945215a4407afcaf0cba15ac601b56df0d
start_date: '2011-10-08T21:34:49Z'
yahoo_finance_data:
market_cap: 7907231744
effective_ticker: GTLB
image_data:
fileName: git-lab.svg
hash: 1GkNkq4eRIDd5CdPT7b66ishOQzqY4eyc8q5xZqRmiI=
best_practice_data:
badge: 42
percentage: 99
twitter_data:
latest_tweet_date: 2022-10-08T10:00:07.000Z
- item:
name: Jenkins
homepage_url: https://jenkins.io/
repo_url: https://github.com/jenkinsci/jenkins
logo: jenkins.svg
twitter: https://twitter.com/jenkinsci
crunchbase: https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf
crunchbase_data:
name: Continuous Delivery Foundation (CDF)
description: A Neutral Home for the Next Generation of Continuous Delivery Collaboration
num_employees_min: 1
num_employees_max: 10
homepage: https://cd.foundation
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/CDeliveryFdn
linkedin: null
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Open Source
- Software
github_data:
languages:
- name: Java
value: 11617460
color: '#b07219'
- name: HTML
value: 933945
color: '#e34c26'
- name: JavaScript
value: 392973
color: '#f1e05a'
- name: CSS
value: 215918
color: '#563d7c'
- name: Less
value: 192944
- name: Groovy
value: 75656
color: '#e69f56'
- name: Ruby
value: 17290
color: '#701516'
- name: Perl
value: 16145
color: '#0298c3'
- name: Handlebars
value: 15221
- name: GAP
value: 6933
- name: Python
value: 4047
color: '#3572A5'
- name: Shell
value: 2354
color: '#89e051'
- name: C
value: 2091
color: '#555555'
- name: Batchfile
value: 1023
color: '#C1F12E'
- name: Dockerfile
value: 163
color: '#384d54'
contributions: >-
48;20;23;26;33;11;28;41;47;36;31;37;28;14;20;24;24;22;22;27;20;29;25;20;20;20;37;26;16;15;24;18;12;20;25;14;23;24;73;31;55;28;20;16;23;21;28;21;34;36;36;25
firstWeek: 2021-10-17Z
stars: 19605
license: MIT License
description: Jenkins automation server
latest_commit_date: '2022-10-08T13:03:08Z'
latest_commit_link: /jenkinsci/jenkins/commit/031f40c50899ec4e5fa4d886a1c006a5330f2627
release_date: '2022-10-05T10:55:34Z'
release_link: https://github.com/jenkinsci/jenkins/releases
contributors_count: 1043
contributors_link: https://github.com/jenkinsci/jenkins/graphs/contributors
repos:
- url: https://github.com/jenkinsci/jenkins
stars: 19605
github_start_commit_data:
start_commit_link: /jenkinsci/jenkins/commit/8a0dc230f44e84e5a7f7920cf9a31f09a54999ac
start_date: '2006-11-05T21:16:01Z'
image_data:
fileName: jenkins.svg
hash: NF6wJqVGQ/KuagjWw5zBa9rK75/gL28x92et53olJF8=
best_practice_data:
badge: 3538
percentage: 100
twitter_data:
latest_tweet_date: 2022-10-05T15:00:00.000Z
- item:
name: Travis CI
homepage_url: https://travis-ci.com/
repo_url: https://github.com/travis-ci/travis-web
logo: travis-ci.svg
crunchbase: https://www.crunchbase.com/organization/travis-ci
crunchbase_data:
name: Travis CI
description: Hosted Continuous Integration Platform
num_employees_min: 51
num_employees_max: 100
homepage: http://travis-ci.com
city: Berlin
region: Berlin
country: Germany
twitter: http://twitter.com/travisci
linkedin: https://www.linkedin.com/company/travis-ci
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Information Technology
- Internet
- Software
- Web Apps
github_data:
languages:
- name: JavaScript
value: 1557492
color: '#f1e05a'
- name: Handlebars
value: 455532
- name: SCSS
value: 284765
- name: Ruby
value: 23424
color: '#701516'
- name: HTML
value: 8195
color: '#e34c26'
- name: Shell
value: 3610
color: '#89e051'
- name: Makefile
value: 1429
color: '#427819'
- name: Dockerfile
value: 1292
color: '#384d54'
- name: Procfile
value: 112
contributions: 0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;1;1;0;0;1;1;0;0;0;0;0;2;0;0;0;0;0;1;0;0;0;0;0;1;0;1;0;0;0;1;0;0;0;0;0;0;1
firstWeek: 2021-10-17Z
stars: 606
license: MIT License
description: The Ember web client for Travis CI
latest_commit_date: '2022-10-05T12:20:53Z'
latest_commit_link: /travis-ci/travis-web/commit/b5ebbc25b61333be6cb070a381d4716217155f36
contributors_count: 158
contributors_link: https://github.com/travis-ci/travis-web/graphs/contributors
repos:
- url: https://github.com/travis-ci/travis-web
stars: 606
github_start_commit_data:
start_commit_link: /travis-ci/travis-web/commit/a3f629bd0d54c99450fb41e366c78f4e8f1a7783
start_date: '2012-06-16T15:41:59Z'
image_data:
fileName: travis-ci.svg
hash: oqbi/wXaNEh/pTpl2Kf2fEtMXxIW4GgnOH0KuNFuDsA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-09-30T20:48:31.000Z
- category:
name: Programming Language
subcategories:
- subcategory:
name: Programming Language
items:
- item:
name: Bash
homepage_url: https://www.gnu.org/software/bash/bash.html
repo_url: https://github.com/gitGNU/gnu_bash
logo: bash.svg
crunchbase: https://www.crunchbase.com/organization/gnu
crunchbase_data:
name: GNU
description: GNU is a Unix-like operating system that has a collection of programs, including user-oriented applications, libraries, games, and more.
num_employees_min: 1001
num_employees_max: 5000
homepage: http://www.gnu.org
city: Boston
region: Massachusetts
country: United States
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Operating Systems
- Software
github_data:
languages:
- name: C
value: 4060599
color: '#555555'
- name: Yacc
value: 190380
color: '#4B6C4B'
- name: Shell
value: 162036
color: '#89e051'
- name: Perl
value: 146942
color: '#0298c3'
- name: Makefile
value: 126536
color: '#427819'
- name: M4
value: 43792
- name: C++
value: 26276
color: '#f34b7d'
- name: Assembly
value: 2019
color: '#6E4C13'
- name: Awk
value: 968
- name: Roff
value: 335
color: '#ecdebe'
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: 2021-10-17Z
stars: 123
license: GNU General Public License v3.0
description: null
latest_commit_date: '2017-01-27T16:25:44Z'
latest_commit_link: /gitGNU/gnu_bash/commit/bc007799f0e1362100375bb95d952d28de4c62fb
contributors_count: 3
contributors_link: https://github.com/gitGNU/gnu_bash/graphs/contributors
repos:
- url: https://github.com/gitGNU/gnu_bash
stars: 123
github_start_commit_data:
start_commit_link: /gitGNU/gnu_bash/commit/726f63884db0132f01745f1fb4465e6621088ccf
start_date: '1996-08-26T18:22:31Z'
image_data:
fileName: bash.svg
hash: HrID/9+gL+Zjx2nY/sk6+BDnLNB2Bc7oalBg0ojl+iY=
best_practice_data:
badge: false
percentage: null
- item:
name: C
homepage_url: https://en.wikipedia.org/wiki/C_(programming_language)
logo: c.svg
crunchbase: https://www.crunchbase.com/organization/international-organization-for-standardization
crunchbase_data:
name: International Organization for Standardization
description: The International Organization for Standardization promotes worldwide proprietary, industrial, and commercial standards.
num_employees_min: 51
num_employees_max: 100
homepage: http://www.iso.org/
city: Vernier
region: Geneve
country: Switzerland
twitter: http://twitter.com/isostandards
linkedin: https://www.linkedin.com/company/iso-international-organization-for-standardization
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Non Profit
image_data:
fileName: c.svg
hash: fpxBmxkfTK7/AS5J5s7sRaZRleTD5L1FZiw0E6RBqCY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-10-07T14:24:13.000Z
- item:
name: C# (C sharp)
homepage_url: https://docs.microsoft.com/en-us/dotnet/csharp/
repo_url: https://github.com/dotnet/csharplang
logo: c-sharp.svg
crunchbase: https://www.crunchbase.com/organization/microsoft
crunchbase_data:
name: Microsoft
description: Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: http://www.microsoft.com
city: Redmond
region: Washington
country: United States
twitter: http://twitter.com/Microsoft
linkedin: https://www.linkedin.com/company/microsoft
acquisitions:
- date: '1987-07-30'
acquiree: Forethought
price: 14000000
- date: '1991-03-08'
acquiree: Consumers Software
- date: '1992-03-25'
acquiree: Fox Software
- date: '1994-02-15'
acquiree: SoftImage
- date: '1994-09-27'
acquiree: Altamira Software
- date: '1994-11-01'
acquiree: NextBase
- date: '1994-11-16'
acquiree: One Tree Software Ltd
- date: '1995-02-23'
acquiree: RenderMorphics
- date: '1995-07-10'
acquiree: Network Managers
- date: '1995-10-16'
acquiree: Blue Ribbon SoundWorks
- date: '1995-11-06'
acquiree: Netwise
- date: '1995-12-12'
acquiree: Bruce Artwick Organization
- date: '1996-01-16'
acquiree: Vermeer Technologies
- date: '1996-03-12'
acquiree: Colusa Software
- date: '1996-04-15'
acquiree: EXOS
- date: '1996-04-23'
acquiree: Aspect Software Inc
- date: '1996-06-11'
acquiree: eShop
- date: '1996-06-17'
acquiree: Electric Gravity
- date: '1996-12-10'
acquiree: NetCarta
- date: '1997-03-03'
acquiree: Interse
- date: '1997-04-06'
acquiree: WebTV Networks
- date: '1997-05-07'
acquiree: Dimension X
- date: '1997-06-13'
acquiree: Cooper & Peters
- date: '1997-06-30'
acquiree: LinkAge Software
- date: '1997-08-05'
acquiree: VXtreme
- date: '1997-12-31'
acquiree: Hotmail
- date: '1997-12-31'
acquiree: Windows Live Hotmail
- date: '1998-04-09'
acquiree: Firefly Network
- date: '1998-04-28'
acquiree: MESA Group
- date: '1998-06-23'
acquiree: Merchant Planet
- date: '1998-08-25'
acquiree: Valence Research
- date: '1998-08-25'
acquiree: Valence Technology
- date: '1998-11-05'
acquiree: linkexchange
- date: '1999-01-08'
acquiree: FASA Interactive
- date: '1999-03-04'
acquiree: CompareNet
- date: '1999-03-28'
acquiree: Numinous Technologies
- date: '1999-04-26'
acquiree: Jump Networks
- date: '1999-06-07'
acquiree: ShadowFactor Software
- date: '1999-06-14'
acquiree: OmniBrowse
- date: '1999-07-01'
acquiree: Sendit
- date: '1999-07-07'
acquiree: Zoomit
- date: '1999-07-21'
acquiree: STNC
- date: '1999-07-28'
acquiree: Intrinsa
price: 58900000
- date: '1999-09-15'
acquiree: Visio Corporation
- date: '1999-09-17'
acquiree: Softway Systems
- date: '1999-10-29'
acquiree: Entropic
- date: '1999-11-01'
acquiree: Entropic Research Laboratories
- date: '2000-02-29'
acquiree: Peach Networks
- date: '2000-06-19'
acquiree: Bungie
- date: '2000-07-12'
acquiree: NetGames
- date: '2000-09-13'
acquiree: MongoMusic
price: 65000000
- date: '2000-09-18'
acquiree: Pacific Microsonics
- date: '2000-12-05'
acquiree: Digital Anvil
- date: '2000-12-21'
acquiree: Great Plains Software
- date: '2001-04-30'
acquiree: NCompass Labs
- date: '2001-09-13'
acquiree: XDegrees
- date: '2002-05-07'
acquiree: Navision
price: 1450000000
- date: '2002-09-24'
acquiree: Rare
price: 337000000
- date: '2002-10-22'
acquiree: Vicinity Corporation
price: 96000000
- date: '2003-02-19'
acquiree: Connectix
- date: '2003-03-04'
acquiree: Pelican Security
price: 1000000
- date: '2003-04-30'
acquiree: PlaceWare
- date: '2003-06-10'
acquiree: RAV Antivirus
- date: '2004-04-26'
acquiree: ActiveViews
- date: '2004-07-17'
acquiree: Lookout Software
- date: '2004-12-16'
acquiree: GIANT Company Software
- date: '2005-02-08'
acquiree: Sybari
- date: '2005-03-10'
acquiree: Groove Networks
- date: '2005-05-11'
acquiree: MessageCast
- date: '2005-07-20'
acquiree: Frontbridge Technologies
- date: '2005-08-30'
acquiree: Teleo
- date: '2005-09-19'
acquiree: Alacris
- date: '2005-10-06'
acquiree: Unveil Technologies
- date: '2005-11-02'
acquiree: Media-Streams.com
- date: '2005-11-03'
acquiree: FolderShare
- date: '2005-11-17'
acquiree: 5th Finger
- date: '2006-01-28'
acquiree: SeaDragon Software
- date: '2006-02-13'
acquiree: Motion Bridge
- date: '2006-03-07'
acquiree: Apptimum
- date: '2006-03-07'
acquiree: Onfolio
- date: '2006-04-03'
acquiree: ProClarity
- date: '2006-04-06'
acquiree: Lionhead Studios
- date: '2006-04-26'
acquiree: AssetMetrix Corporation
- date: '2006-05-01'
acquiree: Massive
price: 200000000
- date: '2006-05-04'
acquiree: DeepMetrix
- date: '2006-05-04'
acquiree: Vexcel
- date: '2006-05-18'
acquiree: Whale Communications
price: 75000000
- date: '2006-06-27'
acquiree: iView Multimedia
- date: '2006-07-17'
acquiree: Softricity
- date: '2006-07-18'
acquiree: Winternals
- date: '2006-07-26'
acquiree: Azyxxi
- date: '2006-09-26'
acquiree: Gteko
- date: '2006-10-02'
acquiree: DesktopStandard
- date: '2006-10-12'
acquiree: Colloquis
- date: '2007-02-26'
acquiree: Medstory
- date: '2007-03-14'
acquiree: Tellme
price: 800000000
- date: '2007-03-14'
acquiree: Tellme
price: 800000000
- date: '2007-03-28'
acquiree: devBiz Business Solutions
- date: '2007-05-03'
acquiree: Screen Tonic
- date: '2007-05-18'
acquiree: aQuantive
price: 6400000000
- date: '2007-06-05'
acquiree: Engyro
- date: '2007-06-07'
acquiree: Stratature
- date: '2007-07-26'
acquiree: AdECN
- date: '2007-08-29'
acquiree: Parlano
- date: '2007-10-29'
acquiree: Global Care Solutions
- date: '2007-11-15'
acquiree: Musiwave
price: 46000000
- date: '2007-11-30'
acquiree: WebFives
- date: '2007-12-12'
acquiree: MultiMap
- date: '2008-01-08'
acquiree: Fast Search & Transfer
- date: '2008-01-21'
acquiree: Calista Technologies
- date: '2008-02-07'
acquiree: Caligari Corporation
- date: '2008-02-11'
acquiree: Danger
price: 500000000
- date: '2008-02-27'
acquiree: YaData
- date: '2008-03-08'
acquiree: Credentica
- date: '2008-03-12'
acquiree: Kidaro
price: 90000000
- date: '2008-03-14'
acquiree: 90 Degree Software
- date: '2008-03-14'
acquiree: Rapt
- date: '2008-03-20'
acquiree: Komoku
- date: '2008-04-09'
acquiree: Farecast
price: 115000000
- date: '2008-06-18'
acquiree: Navic Networks
- date: '2008-06-18'
acquiree: Navic Systems
- date: '2008-06-26'
acquiree: MobiComp
- date: '2008-07-01'
acquiree: Powerset
price: 100000000
- date: '2008-07-14'
acquiree: Zoomix
- date: '2008-07-25'
acquiree: DATAllegro
- date: '2008-08-29'
acquiree: Greenfield Online
price: 486000000
- date: '2008-08-31'
acquiree: Ciao
- date: '2009-05-07'
acquiree: BigPark
- date: '2009-06-01'
acquiree: Rosetta Biosoftware
- date: '2009-06-28'
acquiree: ClickStream Technologies
- date: '2009-09-22'
acquiree: Interactive Supercomputing
- date: '2009-12-10'
acquiree: Sentillion
- date: '2009-12-11'
acquiree: Opalis Software
- date: '2010-10-06'
acquiree: AVIcode
- date: '2010-10-29'
acquiree: Canesta
- date: '2011-05-10'
acquiree: Skype
- date: '2011-06-08'
acquiree: Prodiance Corporation
- date: '2011-10-12'
acquiree: Twisted Pixel Games
- date: '2011-11-23'
acquiree: VideoSurf
price: 100000000
- date: '2012-06-25'
acquiree: Yammer
price: 1200000000
- date: '2012-07-09'
acquiree: Perceptive Pixel
- date: '2012-10-04'
acquiree: PhoneFactor
- date: '2012-10-16'
acquiree: StorSimple
- date: '2012-10-17'
acquiree: MarketingPilot
- date: '2012-12-28'
acquiree: R2 Studios
- date: '2013-01-02'
acquiree: id8 Group R2 Studios
- date: '2013-02-04'
acquiree: Pando Networks
- date: '2013-03-04'
acquiree: MetricsHub
- date: '2013-03-19'
acquiree: Netbreeze
- date: '2013-06-03'
acquiree: InRelease
- date: '2013-09-03'
acquiree: Nokia - Devices & Services Business
price: 7166381241
- date: '2013-10-04'
acquiree: Apiphany
- date: '2014-01-06'
acquiree: Parature
price: 100000000
- date: '2014-04-30'
acquiree: GreenButton
- date: '2014-05-28'
acquiree: Capptain
- date: '2014-07-03'
acquiree: SyntaxTree
- date: '2014-07-11'
acquiree: InMage Systems
- date: '2014-09-15'
acquiree: Mojang Studios
price: 2500000000
- date: '2014-10-08'
acquiree: Equivio
price: 200000000
- date: '2014-11-13'
acquiree: Aorato
price: 200000000
- date: '2014-12-01'
acquiree: Acompli
price: 200000000
- date: '2014-12-11'
acquiree: Bit Stadium GmbH
- date: '2014-12-11'
acquiree: HockeyApp
- date: '2015-01-23'
acquiree: Revolution Analytics
- date: '2015-02-04'
acquiree: Sunrise
price: 100000000
- date: '2015-02-12'
acquiree: N-Trig
- date: '2015-03-26'
acquiree: LiveLoop
- date: '2015-04-14'
acquiree: Datazen Software
- date: '2015-06-02'
acquiree: Wunderlist
price: 150000000
- date: '2015-06-10'
acquiree: BlueStripe
- date: '2015-07-16'
acquiree: FieldOne Systems
- date: '2015-07-19'
acquiree: Adallom
price: 320000000
- date: '2015-08-03'
acquiree: FantasySalesTeam
- date: '2015-09-10'
acquiree: Double Labs
- date: '2015-09-11'
acquiree: VoloMetrix
price: 250000000
- date: '2015-09-14'
acquiree: Echo Locker
- date: '2015-09-30'
acquiree: Adxstudio
- date: '2015-10-02'
acquiree: Havok
- date: '2015-11-05'
acquiree: Mobile Data Labs
- date: '2015-11-09'
acquiree: Secure Islands Technologies