-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetails.json
More file actions
4386 lines (4386 loc) · 138 KB
/
details.json
File metadata and controls
4386 lines (4386 loc) · 138 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
[
{
"name": "Global Alliance for Genomics and Health",
"topics": [
"web",
"genomics",
"bioinformatics",
"genetics",
"standards"
],
"tagline": "We develop genomics tools to benefit human health",
"tech": [
"python",
"postgresql",
"java",
"react",
"rust"
],
"fields": [
"Science and medicine",
"Web"
],
"guidance_link": "https://docs.google.com/document/d/1IXLLYhuROLr154PVaSOROmmLssVmNIUkzer-wPstwSo",
"brief": "The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings..."
},
{
"name": "GNU Compiler Collection (GCC)",
"topics": [
"compilers",
"developer tools",
"toolchain",
"openmp",
"link time optimization"
],
"tagline": "GNU compilers",
"tech": [
"c/c++",
"gnu make",
"gnu autotools"
],
"fields": [
"Programming languages",
"Development tools"
],
"guidance_link": "https://gcc.gnu.org/wiki/SummerOfCode",
"brief": "The GNU Compiler Collection (GCC) is an optimizing compiler produced by the GNU Project supporting various programming languages, hardware architectur..."
},
{
"name": "MuseScore",
"topics": [
"music",
"midi",
"musicxml",
"sheet music",
"music notation"
],
"tagline": "The World\u2019s Most Popular Music Notation Software",
"tech": [
"c++",
"qt",
"qml",
"cmake"
],
"fields": [
"End user applications",
"Media"
],
"guidance_link": "https://musescore.org/en/node/4949",
"brief": "MuseScore's main purpose is the creation of high-quality engraved musical scores in a \"What-You-See-Is-What-You-Get\" environment. It supports unlimite..."
},
{
"name": "Responsible AI and Human Centred Technology",
"topics": [
"machine learning",
"ai",
"Fairness",
"Robustness",
"Safety",
"Interpretibility"
],
"tagline": "Human-centered and responsible AI for all",
"tech": [
"python",
"javascript",
"Technical writing"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://docs.google.com/document/d/1_PinY76lVHWAfahBmrvK5MKugXxZm6LZ03I-vfDWri0/edit#",
"brief": "Responsible AI & Human-Centered Technology (RAI-HCT) is Google Research\u2019s center-of-excellence focused on ensuring that AI/ML and its development posi..."
},
{
"name": "Semi Technologies",
"topics": [
"machine learning",
"Vector Database",
"Search Engines"
],
"tagline": "The ML-first vector search engine",
"tech": [
"python",
"machine learning",
"golang",
"vectors",
"natural language processing"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://weaviate.io/developers/contributor-guide/current/",
"brief": "SeMI Technologies creates database software like the open-source Weaviate vector search engine.\nWeaviate is a low-latency vector search engine with ou..."
},
{
"name": "Our World In Data",
"topics": [
"open data",
"data visualisation",
"Data cataloging"
],
"tagline": "Explaining the world's biggest problems with data",
"tech": [
"python",
"mysql",
"d3",
"typescript",
"pandas"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": null,
"brief": "Poverty, disease, hunger, climate change, war, existential risks, and inequality: The world faces many great and terrifying problems. It is these larg..."
},
{
"name": "Chromium",
"topics": [
"web",
"browser",
"operating-system"
],
"tagline": "Fast, seamless, safe, and reliable web for all",
"tech": [
"python",
"javascript",
"java",
"c++",
"git"
],
"fields": [
"Operating systems",
"Web"
],
"guidance_link": "https://docs.google.com/document/d/1IOj4hSdPl8h1-8zYK_Gt3OxA0R44SLbmr-ZH3f9yDXM/edit?usp=sharing",
"brief": "The Chromium projects include Chromium and Chromium OS, the open-source projects behind the Google Chrome browser and Google Chrome OS, respectively.\n..."
},
{
"name": "NumFOCUS",
"topics": [
"data science",
"graphics",
"scientific computing",
"numerical computation"
],
"tagline": "NumFOCUS promotes open source scientific software.",
"tech": [
"python",
"c++",
"r",
"julia"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://github.com/numfocus/gsoc/blob/master/CONTRIBUTING-students.md",
"brief": "NumFOCUS supports and promotes world-class, innovative, open source scientific software. Most individual projects, even the wildly successful ones, fi..."
},
{
"name": "Department of Biomedical Informatics, Emory University",
"topics": [
"science and medicine",
"data integration",
"workflows",
"radiology",
"distributed system"
],
"tagline": "Biomedical research to advance healthcare",
"tech": [
"python",
"javascript",
"java",
"workflows",
"dicom"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://github.com/NISYSLAB/Emory-BMI-GSoC/blob/main/CONTRIBUTOR-GUIDANCE.md",
"brief": "Biomedical Informatics is a multidisciplinary field that is motivated by our desire to improve diagnosis, clinical care, and human health, through nov..."
},
{
"name": "Open Technologies Alliance - GFOSS",
"topics": [
"web",
"robotics",
"open hardware",
"c++",
"nodered"
],
"tagline": "Promote Open Standards and Open Source",
"tech": [
"javascript",
"c/c++",
"nodejs",
"python 3",
"Machine Learning (ML)"
],
"fields": [
"End user applications",
"Web"
],
"guidance_link": null,
"brief": "Open Technologies Alliance (GFOSS) is a non-profit organization, with 37 Universities and Research Centers as its shareholders. Our main goal is to p..."
},
{
"name": "Dart",
"topics": [
"programming languages",
"mobile apps"
],
"tagline": "Dart is a client language for apps on any platform",
"tech": [
"flutter",
"dart"
],
"fields": [
"Programming languages"
],
"guidance_link": "https://github.com/dart-lang/sdk/wiki/Dart-GSoC-2022-Project-Ideas",
"brief": "The Dart language gives you a fast developer experience and works on any platform. Dart powers hot reload enabling you to make a code change and insta..."
},
{
"name": "CERN-HSF",
"topics": [
"machine learning",
"big data",
"algorithmics",
"particle physics",
"Performance Optimisation"
],
"tagline": "Umbrella for Particle Physics-related projects",
"tech": [
"python",
"c/c++",
"data analysis",
"artificial intelligence",
"container orchestration"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://hepsoftwarefoundation.org/activities/gsoc.html#for-students",
"brief": "CERN-HSF (High-Energy Physics Software Foundation) is the umbrella organization for high-energy physics-related projects in GSoC. The HEP Software Fou..."
},
{
"name": "Orcasound",
"topics": [
"web",
"audio",
"ai",
"acoustics",
"community science"
],
"tagline": "Humans & AI listening together to save the whales.",
"tech": [
"python",
"javascript",
"raspberry pi",
"elixir",
"NextJs"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://github.com/orcasound/orcagsoc/blob/master/GSoC-contributor-guide.md",
"brief": "Orcasound is an open source project that makes it easy to listen live for animals that make sounds, like the endangered orcas in Washington State (USA..."
},
{
"name": "PEcAn Project",
"topics": [
"data science",
"ecosystem models",
"scientific visualization",
"climate science",
"Ecological Forecasting,"
],
"tagline": "Develop and promote tools for ecosystem modeling",
"tech": [
"r",
"docker",
"api",
"geospatial"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://pecanproject.github.io/gsoc.html",
"brief": "Climate change science has witnessed an explosion in the amount and types of data that can be brought to bear on the potential responses of the terres..."
},
{
"name": "The Linux Foundation",
"topics": [
"kernel",
"automotive",
"printing",
"iio",
"zephyr"
],
"tagline": "Non-profit consortium fostering growth of Linux",
"tech": [
"c",
"linux",
"c++",
"cups",
"ipp"
],
"fields": [
"Operating systems"
],
"guidance_link": "https://wiki.linuxfoundation.org/gsoc/google-summer-code-2022",
"brief": "The Linux Foundation is a non-profit consortium dedicated to fostering the growth of Linux. Founded in 2007 as a merger of the former Free Standards G..."
},
{
"name": "52\u00b0North Spatial Information Research GmbH",
"topics": [
"citizen science",
"spatial information infrastructures",
"open standards",
"data analytics",
"Geoinformation"
],
"tagline": "Innovative ideas & technologies in geoinformatics",
"tech": [
"javascript",
"android",
"java",
"web services",
"ogc standards"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://52north.org/software/contribute/",
"brief": "52\u00b0North is an open source initiative in the field of geoinformatics. Core topics of our activities are for example sensor web, web-based geoprocessin..."
},
{
"name": "LLVM Compiler Infrastructure",
"topics": [
"compilers",
"development tools",
"libraries"
],
"tagline": "LLVM Compiler Infrastructure",
"tech": [
"llvm",
"c++",
"clang",
"mlir"
],
"fields": [
"Programming languages",
"Development tools"
],
"guidance_link": "https://discourse.llvm.org/t/gsoc-2022-projects-proposals-and-other-information/60386",
"brief": "The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional..."
},
{
"name": "The ns-3 Network Simulator Project",
"topics": [
"computer networking",
"network simulation"
],
"tagline": "ns-3 is a simulation tool for computer networks.",
"tech": [
"python",
"django",
"c++"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://www.nsnam.org/wiki/GSOC2022ContributorGuide",
"brief": "Are you interested in contributing to a widely-used performance evaluation tool for computer networking research? [ns-3](https://www.nsnam.org) is a *..."
},
{
"name": "Open Chemistry",
"topics": [
"data science",
"graphics",
"scientific visualization",
"cheminformatics",
"quantum chemistry"
],
"tagline": "Advancing Open Source & Open Science for Chemistry",
"tech": [
"python",
"javascript",
"opengl",
"c++",
"c++14"
],
"fields": [
"Science and medicine",
"End user applications"
],
"guidance_link": "https://wiki.openchemistry.org/Applying_to_GSoC",
"brief": "The Open Chemistry project is a collection of open source, cross platform libraries and applications for the exploration, analysis and generation of c..."
},
{
"name": "Haiku",
"topics": [
"desktop",
"kernel"
],
"tagline": "Operating system that targets personal computing.",
"tech": [
"c++",
"posix",
"unix"
],
"fields": [
"Operating systems",
"End user applications"
],
"guidance_link": "https://www.haiku-os.org/community/gsoc/2022/contributors",
"brief": "Haiku is a fast, efficient, easy to use and lean open source operating system inspired by the BeOS that specifically targets personal computing.\n\nHaik..."
},
{
"name": "FFmpeg",
"topics": [
"audio",
"video",
"subtitles",
"multimedia"
],
"tagline": "Record, convert and stream audio & video",
"tech": [
"c",
"git",
"asm"
],
"fields": [
"Media"
],
"guidance_link": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2022",
"brief": "FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans an..."
},
{
"name": "BeagleBoard.org",
"topics": [
"robotics",
"iot",
"ai",
"software defined radio",
"Personal Server"
],
"tagline": "Open hardware computing for educators and makers",
"tech": [
"linux",
"fpga",
"risc-v",
"dsp",
"Zephyr RTOS"
],
"fields": [
"Science and medicine",
"Infrastructure and cloud"
],
"guidance_link": "https://forum.beagleboard.org/t/about-google-summer-of-code/27544#what-makes-a-good-proposal-4",
"brief": "Enabling individuals to define the connected devices in their lives, BeagleBoard.org is the open-source, community-driven hardware precursor to Raspbe..."
},
{
"name": "OpenMRS",
"topics": [
"platform",
"Electronic Medical Record System"
],
"tagline": "Write Code, Save Lives.",
"tech": [
"mysql",
"javascript",
"java",
"fhir",
"Cypress"
],
"fields": [
"Programming languages",
"Development tools"
],
"guidance_link": "https://talk.openmrs.org/t/interested-contributors-get-ready-for-gsoc-2022/35802",
"brief": "OpenMRS provides the foundational, electronic medical record technology for more than 6,500 health facilities in over 40 countries, touching and helpi..."
},
{
"name": "FRRouting",
"topics": [
"networking",
"software defined networking",
"linux",
"routing",
"systems"
],
"tagline": "Routing suite including BGP, IS-IS, LDP, OSPF, PIM",
"tech": [
"c",
"linux",
"networking",
"linux kernel",
"routing"
],
"fields": [
"Other",
"Infrastructure and cloud"
],
"guidance_link": "https://frrouting.github.io/frr-gsoc/",
"brief": "FRRouting (FRR) is an IP routing protocol suite for Linux and Unix platforms which includes protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, PBR, RIP,..."
},
{
"name": "coreboot",
"topics": [
"hardware",
"drivers",
"firmware",
"boot loader",
"BIOS"
],
"tagline": "Fast, secure and flexible BIOS firmware",
"tech": [
"c",
"assembly",
"arm",
"x86"
],
"fields": [
"Operating systems",
"Security"
],
"guidance_link": "https://doc.coreboot.org/contributing/gsoc.html",
"brief": "coreboot provides a fast, reliable, secure, and predictable boot-firmware solution for numerous modern and legacy chipsets. There are millions of devi..."
},
{
"name": "XWiki",
"topics": [
"web development",
"wiki",
"platform",
"web applications",
"structured data"
],
"tagline": "The Advanced Open Source Enterprise Wiki",
"tech": [
"javascript",
"java",
"html5",
"css3",
"velocity"
],
"fields": [
"Web",
"Social and communication"
],
"guidance_link": "https://dev.xwiki.org/xwiki/bin/view/GoogleSummerOfCode/Guidelines",
"brief": "XWiki is an open source software development platform based on the wiki principles, under the LGPL license. In addition to being a full-featured wiki,..."
},
{
"name": "The Palisadoes Foundation",
"topics": [
"web",
"api",
"database",
"cloud",
"mobile"
],
"tagline": "Transforming non-profit organizations in the cloud",
"tech": [
"mongodb",
"node.js",
"flutter",
"graphql",
"typescript"
],
"fields": [
"End user applications",
"Social and communication"
],
"guidance_link": "https://palisadoesfoundation.github.io/talawa-docs/docs/internships/gsoc/gsoc-introduction",
"brief": "The Palisadoes Foundation\u2019s open-source software projects support community groups in organising their daily activities. A significant proportion of o..."
},
{
"name": "Neutralinojs",
"topics": [
"desktop",
"framework",
"cross-platform",
"Application Development"
],
"tagline": "Lightweight cross-platform desktop app framework",
"tech": [
"c",
"javascript",
"node.js",
"c++",
"typescript"
],
"fields": [
"Web",
"Development tools"
],
"guidance_link": "https://neutralino.js.org/docs/contributing/framework-developer-guide/",
"brief": "Neutralinojs is a lightweight and portable desktop application development framework. It lets you develop lightweight cross-platform desktop applicati..."
},
{
"name": "Matrix.org",
"topics": [
"interoperability",
"decentralisation",
"Secure Messaging"
],
"tagline": "Open, secure, decentralised communication",
"tech": [
"python",
"javascript",
"rust"
],
"fields": [
"End user applications",
"Social and communication"
],
"guidance_link": "https://matrix.org/docs/develop",
"brief": "Matrix is an open standard for interoperable, decentralised, real-time communication over IP. It can be used to power Instant Messaging, VoIP/WebRTC s..."
},
{
"name": "CircuitVerse.org",
"topics": [
"education",
"web",
"simulation",
"pedagogy",
"digital logic design"
],
"tagline": "Build and learn logic circuits in the cloud!",
"tech": [
"javascript",
"rails",
"canvas"
],
"fields": [
"Science and medicine",
"End user applications"
],
"guidance_link": "https://docs.google.com/document/d/1oeYPAuqWxeC79d-R5I9uFJywQJv4ooO4obF4pwifyTY/edit",
"brief": "CircuitVerse is an easy to use digital logic circuit simulator which aims at providing a platform to create, share and learn digital circuits. It can ..."
},
{
"name": "VideoLAN",
"topics": [
"audio",
"streaming",
"video",
"codecs",
"media database"
],
"tagline": "Open source believers rocking the multimedia world",
"tech": [
"c",
"c++",
"qt",
"assembly",
"video"
],
"fields": [
"End user applications",
"Media"
],
"guidance_link": "https://wiki.videolan.org/SoC_2022",
"brief": "The VideoLAN project is led by and composed of a team of volunteers who believe in the power of open source to rock the multimedia world. We produce m..."
},
{
"name": "Rizin",
"topics": [
"reverse engineering",
"computer security",
"debugging",
"emulation",
"disassembly"
],
"tagline": "Rizin reverse engineering framework and toolset",
"tech": [
"c",
"python",
"c++",
"qt"
],
"fields": [
"Security"
],
"guidance_link": "https://rizin.re/gsoc/2022",
"brief": "The Rizin project is a fork of the famous Radare2 project that started in 2006. Since then the codebase has been rewritten multiple times, modularized..."
},
{
"name": "Intel Video and Audio for Linux",
"topics": [
"media",
"imaging",
"Codec"
],
"tagline": "We enable Linux Audio and Video for Intel",
"tech": [
"c/c++",
"opengl",
"Codec",
"Media",
"Imaging"
],
"fields": [
"Media",
"Infrastructure and cloud"
],
"guidance_link": "https://github.com/intel-media-ci/cartwheel-ffmpeg",
"brief": "We enable video/audio stack for Intel on Linux. We deliver our code to FFmpeg, FFmpeg DNN, Gstreamer, and libXCam..."
},
{
"name": "Electron",
"topics": [
"desktop",
"framework",
"javascript"
],
"tagline": "Cross-platform desktop apps with web technologies",
"tech": [
"javascript",
"node.js",
"c++",
"typescript",
"Chromium"
],
"fields": [
"End user applications",
"Web"
],
"guidance_link": "https://docs.google.com/document/d/17vDEvxq7bEwFXO-hJX7bsnyDCx8aRK3yo-rerrxYaOk/edit?usp=sharing",
"brief": "Electron is a framework for building desktop applications using JavaScript, HTML, and CSS. By embedding Chromium and Node.js into its binary, Electron..."
},
{
"name": "Free and Open Source Silicon Foundation",
"topics": [
"hardware",
"debug",
"web services",
"simulation",
"electronic design tools"
],
"tagline": "Working together for Free and Open Source Silicon",
"tech": [
"verilog",
"risc-v",
"compiler",
"web development"
],
"fields": [
"Other",
"Infrastructure and cloud"
],
"guidance_link": "https://www.fossi-foundation.org/gsoc",
"brief": "The FOSSi (Free and Open Source Silicon) Foundation is a not-for-profit organization with the support the growing community of open source silicon har..."
},
{
"name": "ReactOS Foundation",
"topics": [
"operating systems",
"kernel",
"drivers",
"windows",
"system programming"
],
"tagline": "Open your windows to freedom!",
"tech": [
"c",
"c++",
"win32",
"nt"
],
"fields": [
"Operating systems"
],
"guidance_link": "https://reactos.org/wiki/Google_Summer_of_Code_2022",
"brief": "Imagine running your favorite Windows applications and drivers in an open-source environment you can trust. That's ReactOS. A free, open source, Windo..."
},
{
"name": "MZmine",
"topics": [
"visualization",
"mass spectrometry",
"biochemistry",
"feature detection",
"ion mobility"
],
"tagline": "Open-source software for mass spectrometry",
"tech": [
"java",
"javafx"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://mzmine.github.io/gsoc2022.html",
"brief": "Mass spectrometry is an analytical technique that measures the mass and abundance of small molecules with very high precision. However, the datasets p..."
},
{
"name": "MDAnalysis",
"topics": [
"science",
"computational-chemistry",
"high-performance-computing",
"molecular-simulation",
"soft-matter-physics"
],
"tagline": "Analysis of molecular simulations data with Python",
"tech": [
"python",
"cython",
"c/c++"
],
"fields": [
"Science and medicine",
"Data"
],
"guidance_link": "https://github.com/MDAnalysis/mdanalysis/wiki/Google-Summer-Of-Code",
"brief": "MDAnalysis is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interacti..."
},
{
"name": "ArduPilot",
"topics": [
"robotics",
"Drone",
"autonomous vehicle",
"UGV",
"unmanned vehicle"
],
"tagline": "World's most advanced autonomous vehicle software",
"tech": [
"python",
"lua",
"c++",
"pixhawk"
],
"fields": [
"Science and medicine",
"End user applications"
],
"guidance_link": "https://ardupilot.org/dev/docs/gsoc.html",
"brief": "ArduPilot is the world's most widely used open source flight code software for unmanned autonomous vehicles including planes, multicopters, helicopter..."
},
{
"name": "GNU Radio",
"topics": [
"real-time",
"dsp",
"communications engineering",
"cybersecurity",
"Software-Defined Radio"
],
"tagline": "The free & open software radio ecosystem",
"tech": [
"python",
"c++",
"qt",
"simd"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://wiki.gnuradio.org/index.php?title=GSoCStudentInfo",
"brief": "GNU Radio is a free & open-source software development toolkit that provides signal processing blocks to implement software radios. It can be used wit..."
},
{
"name": "GRAME",
"topics": [
"audio",
"compiler",
"digital signal processing",
"function programming language"
],
"tagline": "Domain specific language for audio",
"tech": [
"c",
"python",
"javascript",
"c++",
"typescript"
],
"fields": [
"Programming languages",
"Media"
],
"guidance_link": "https://github.com/grame-cncm/faustideas",
"brief": "We develop Faust (Functional Audio Stream), a functional programming language for sound synthesis and audio processing with a strong focus on the desi..."
},
{
"name": "Open Bioinformatics Foundation (OBF)",
"topics": [
"open science",
"genomics",
"bioinformatics",
"workflows",
"Open Source Bioinformatics"
],
"tagline": "Open Source & Open Science in biological research",
"tech": [
"python",
"javascript",
"c++",
"html/css",
"Git/GitHub"
],
"fields": [
"Science and medicine"
],
"guidance_link": "https://www.open-bio.org/events/gsoc/gsoc-guide/",
"brief": "The Open Bioinformatics Foundation (OBF) is a non-profit, volunteer-run group dedicated to promoting the practice and philosophy of Open Source softwa..."
},
{
"name": "Public Lab",
"topics": [
"science",
"environment",
"community",
"documentation",
"forum"
],
"tagline": "Tools for communities to measure pollution",
"tech": [
"javascript",
"ruby on rails"
],
"fields": [
"Science and medicine",
"Social and communication"
],
"guidance_link": "http://publiclab.org/gsoc",
"brief": "Public Lab is a small non-profit which supports communities facing environmental problems. Our work involves open source hardware, developed collabora..."
},
{
"name": "Unikraft",
"topics": [
"virtualization",
"cloud",
"software reuse",
"software configurability"
],
"tagline": "Unikraft is a fast and secure unikernel SDK",
"tech": [
"c",
"python",
"xen",
"kvm",
"assembly language"
],
"fields": [
"Operating systems",
"Infrastructure and cloud"
],
"guidance_link": "https://unikraft.org/docs/contributing/",
"brief": "Unikraft is a fast, secure and open-source Unikernel Development Kit.\n\nBy tailoring the operating system, libraries and configuration to the particula..."
},
{
"name": "RTEMS Project",
"topics": [
"kernel",
"embedded",
"real-time",
"multicore",
"rtos"
],
"tagline": "A real-time operating system for Earth & Space",
"tech": [
"python",
"c/c++",
"assembly",
"posix"
],
"fields": [
"Operating systems",
"Science and medicine"