Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - gitlab.com/Remmina/gitlab-oss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcbafdee8fae8076718119994abb03e2657e773d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
# GitLab Ultimate or Gold for Open Source Projects

We take our responsibility of open source stewardship very seriously (https://about.gitlab.com/2016/01/11/being-a-good-open-source-steward/ and https://about.gitlab.com/stewardship/).

GitLab exists today in large part thanks to the work of hundreds of thousands of open source contributors around the world. To give back to this community who gives us so much, we want to help teams be more efficient, secure, and productive. We believe the best way for them to achieve this is by using as many of the capabilities of GitLab as possible.

It has already been the case for years that that any public project on GitLab.com gets all Gold features. We are happy to now offer a complimentary license to GitLab Ultimate (self-hosted) or subscription to GitLab Gold (SaaS) to all open source projects.

## Requirements

To apply:
- You need to be a project lead or a core contributor for an active open source project.
- Your project needs to use an [OSI-accepted open source license](https://opensource.org/licenses/alphabetical#)
- Your project must not seek to make profit from the resulting project software.

If you or your company work on commercial projects, consider our [plans for businesses](https://about.gitlab.com/pricing/).
If you're not sure if your project meets these requirements, please send an email to opensource@gitlab.com. 

We'll review all requests and accept them at our discretion. If accepted, your project will be listed below and we will send you a quote.

## Here's how to apply

1.   Create a gitlab.com account for your open source project: https://gitlab.com/users/sign_in
1.   Edit this file and add an entry to the [Open source projects using GitLab Ultimate or Gold](#open-source-projects-using-gitlab-ultimate-or-gold)
section at the bottom of this page (all lines required):

     ```
     ### Project name
     A short description of what you do and why.
     https://myawesomeproject.org
     Ultimate or Gold?
     ```

1.   Commit your changes to a new fork and start a new Merge Request.
1.   Fill out the form at our [OSS page](https://about.gitlab.com/solutions/open-source/)

## License/subscription details

- You'll receive a 1 year license for GitLab Ultimate or subscription for GitLab Gold.
- Support is not included, but can be purchased for 95% off, at $4.95/user/month. [Contact Sales](https://ultimate-free-post.about.gitlab.com/sales/) for that.
- Your license/subscription can be renewed each year if your project still meets the requirements.
   - [Contact Sales](https://ultimate-free-post.about.gitlab.com/sales/) 30 days before your license/subscription ends.
- Licenses and subscriptions cannot be transferred or sold.

## Open source projects using GitLab Ultimate or Gold

    ### GNU Mailman
    GNU Mailman is a free and open source mailing list manager. We use Gitlab for all our [development](https://gitlab.com/mailman) and Continuous Integration.
    https://list.org
    Gold

    ### Manjaro Linux
    Manjaro is a user-friendly Linux distribution based on the independently developed Arch operating system. We use Gitlab for all our [development](https://gitlab.manjaro.org) and Continuous Integration.
    https://manjaro.org
    Ultimate

    ### NOC
    NOC is web-scale Operation Support System (OSS) for telecom and service providers. Areas covered by NOC include Network Resource Inventory (NRI), IP Address Management (IPAM), Fault Management (FM), Performance Management (PM), Peering Managemen. System is developed by telecom professionals and for telecom professionals.
    https://nocproject.org/
    Ultimate

    ### eelo
    An open source mobile phone OS that respects user’s data privacy
    https://www.eelo.io/
    Ultimate

    ### Mastodon
    An open source decentralized social network based on open web protocols.
    https://joinmastodon.org
    Ultimate

    ### Ninja Forms
    An open source drag-and-drop form builder for WordPress
    https://ninjaforms.com/
    Ultimate

    ### CHVote
    CHVote is one of only two accredited electronic voting systems by the Federal Council in Switzerland.
    https://republique-et-canton-de-geneve.github.io/chvote-1-0
    Ultimate

    ### Aurora OSS
    An open source ecosystem to provide an alternate to Google Ecosystem. Currently we provide AuroraStore as an alternate to Google PlayStore (https://gitlab.com/AuroraOSS/AuroraStore)
    https://gitlab.com/AuroraOSS/
    Ultimate

    ### Chakra Linux
    A community-developed GNU/Linux distribution with an emphasis on KDE and Qt technologies, utilizing a unique half-rolling release model that allows users to enjoy the latest versions of the Plasma desktop and their favorite applications on top of a periodically updated system core.
    https://www.chakralinux.org
    Ultimate

    ### CiviCRM
    CiviCRM is a web-based Open Source contact relationship management (CRM) system. CiviCRM emphasizes communicating with individuals, community engagement, activism, outreach, managing contributions, and managing memberships.
    https://civicrm.org/
    Ultimate

    ### SECU
    SЁCU is a service that allows you to send password protected self-destructing data packages. Thus the recipient will have to provide a password in order to open a package. And once it is opened, it will no longer be available.
    https://secu.su/
    Ultimate

    ### Spack
    Spack is a package manager for supercomputers, used by HPC centers and developers worldwide.
    https://gitlab.com/spack/spack
    Ultimate

    ### Alchemy Viewer
    A client for SecondLife/OpenMetaverse protocol compatible virtual world platforms.
    https://www.alchemyviewer.org
    Ultimate

    ### dps8m
    The dps8m project is an open source collaboration to create an emulator for the Honeywell DPS8/M mainframe computer, with the goal of running th Multics operating system.
    https://gitlab.com/dps8m
    Ultimate

    ### mvdsv
    MVDSV: a QuakeWorld server
    https://github.com/deurk/mvdsv
    Ultimate

    ### Personal Management System
    Personal Management System is a system used to showcase not only your own personal projects and accomplishments, but also serve as your resume and blog engine. A one stop shop for all your personal branding needs.
    https://repo.theoremforge.com/me/PMS
    Ultimate

    ### OpenAPI
    Rest API for Puppet & Ansible
    https://cyberox.org/rails/openapi
    Ultimate

    ### Ruetomel
    An educative project for CS students to learn about devops, based on a given stack (java, springboot, docker, git/gitlab, k8s)
    https://www.devops.pf or https://gitlab.com/teriiehina/ruetomel
    Ultimate

    ### Groovybot
    Groovy is a feature-rich Discord Bot. His main-feature is to play specific songs available on YouTube via high quality streaming.
    https://groovybot.xyz
    Ultimate

    ### owlo
    An open source ActivityPub utilizing microblogging and fiction platform.
    http://localtoast.net/
    Ultimate

    ### MathLibrary
    A Kotlin library to assist you in Multivariable Calculus, Linear Algebra, Electrostatics, and Quantum Computing.
    https://github.com/ethertyper/mathlibrary
    Ultimate

    ### Ansible - PostgresXL cluster
    The main goal of this project is to have an ansible installer for full Postgres-XL cluster with gtms, coordinators, masters and slaves. The other goal is to have tests using role provision docker, to check behavior in a real environment.
    https://gitlab.com/elrender/postgres-xl-cluster
    Ultimate

    ### CoCoMS - Construction Correspondence Management System
    CoCoMS is a simple Document Management System designed specifically for the management of correspondence generated during the execution of a construction project. CoCoMS is targeted at document controllers and key staff of a construction project.
    https://gitlab.com/chrmina/cocoms
    Ultimate

    ### lainradio.club
    Lainradio.club is an open-source static website using Hugo as the generator. It's purpose is to simply aggregate past [radio] events (usually bi-friday evenings) and other useful stuff.
    https://lainradio.club
    Ultimate

    ### OpenGAG
    An alternative to 9gag. But 100% open source. Driven by the community a bit like this [awesome thing](https://gitlab.com/gitlab-org/gitlab-ce)
    https://gitlab.com/bancarel.valentin/open-gag
    Ultimate

    ### Minecordbot
    A powerful way to bridge Minecraft and Discord.
    https://minecordbot.cyr1en.com
    Ultimate

    ### Atomix
    A reactive Java framework for building fault-tolerant distributed systems.
    http://atomix.io
    Gold

    ### Open Motors
    Develop a modular open source electric car platform (Hardware & Software) that enables businesses and startups to design, prototype, and build electric vehicles and transportation services.
    https://openmotors.co
    Ultimate

    ### Gestures
    A minimal Gtk+ GUI app for libinput-gestures (Linux touchpad gestures)
    https://gitlab.com/cunidev/gestures
    Ultimate

    ### CacheRefs
    Open source module for Drupal 8 that provides advanced caching invalidations. We are also currently in the process of migrating our other opensource projects to this gitlab instance which include other drupal modules, docker images, alpine linux support for wkhtmltopdf with QT support
    https://git.alloylab.com/open-source/cacherefs
    Ultimate

    ### Nektar++
    Nektar++ is a cross-platform open-source framework for the spectral/hp element method. It is designed to support the construction of efficient, high-performance scalable solvers for a wide range of partial differential equations (PDE) encompassing a number of scientific fields.
    https://www.nektar.info/
    Ultimate

    ### Identihub
    Open Source Design software to host visual assets easily on a page and make it easier to share them in any format. AGPL Free Software.
    https://identihub.co
    Ultimate

    ### firma-cda
    Clinical Documents Repository and Digital Signature using HL7-CDA and IHE-DSG standard for Ecuador Ministry of Health and any other Hospital or Health institution
    https://gitlab.com/MSP_EC/firma-cda
    Ultimate

    ### Human Cell Atlas
    To create comprehensive reference maps of all human cells—the fundamental units of life—as a basis for both understanding human health and diagnosing, monitoring, and treating disease.
    https://www.humancellatlas.org
    Ultimate

    ### BillRun Project
    An open source billing for big-data
    https://git.bill.run/
    Ultimate

    ### equalOS
    Currently an open source site and CI pipeline using Hugo and PostCSS. Can be cloned and served locally. Project is for creating an automated CI pipeline for building and distributing Linux from source inside containers using a tiling window manager, like i3 or Sway.
    https://equalos.org
    Gold

    ### pgjdbc
    JDBC driver for PostgreSQL
    jdbc.postgresql.org
    Gold

    ### CavApps
    A standalone 'home' application that any Gamming clan can use to manage their community, along with plugin tooling and creation.
    https://7cav.us
    Gold

    ### Arctic Engine
    Arctic Engine is an open-source free game engine released under the MIT license. Arctic Engine is implemented in C++ and focuses on simplicity. Many developers have forgotten exactly why it is that we make games. It's joyless, disillusioning and discouraging for them. In the 80's and 90's it was possible for a programmer to make a game alone and it was Fun. Arctic Engine returns the power to the C++ programmer and makes game development fun again.
    https://gitlab.com/huldra/arctic
    Gold

    ### Validity
    A browser extension for validating HTML.
    https://www.validity.org.uk/
    Gold

    ### Wownero
    Wownero is a fairly launched software fork of the privacy focused cryptocurrency Monero without a pre-mine. The project aims to implement experimental blockchain features while having fun as a meme coin.
    http://wownero.org
    Gold

    ### coala
    Linting and fixing code for all languages.
    https://coala.io
    Gold

    ### Better With Mods
    A highly modular hardcore mod for Minecraft.
    https://betterwithmods.com
    Gold

    ### Pterodactyl
    Pterodactyl Panel is the free, open-source, game agnostic, self-hosted control panel for users, networks, and game service providers. Control all of your games from one unified interface.
    https://pterodactyl.io
    Gold

    ### Splits I/O
    A sharing and analyzation tool for speedrunners!
    https://splits.io/
    Gold

    ### Aetherya
    Aetherya is an open-source moderation/utilitarian bot created for a Twitch streamer's Discord server. She tracks users joining, users leaving, users editing/deleting their messages, and has taken a large workload off the mod team.
    https://gitlab.com/TotallyAWeebDev/Aetherya
    Gold

    ### Mastalab
    Mastalab is a multi-accounts Android client for Mastodon
    https://tom79.bitbucket.io
    Gold

    ### Hasadna - The Public Knowledge Workshop
    We release public information and make it easy for the public to meaningfully engage with the data, using open-source and free-software.
    http://www.hasadna.org.il/en/about/
    Gold

    ### Hamakor
    We promote and assist in promoting open-source and free-software in Israel. As part of that, we hold monthly meetups where volunteers contribute to various open-source projects, as well as mentoring new comers to open-source.
    https://www.hamakor.org.il/en/
    Gold

    ### Community Hass.io Add-ons for Home Assistant
    The primary goal of this project is to provide Hass.io / Home Assistant users with additional, high quality, add-ons that allow you to take their automated home to the next level.
    https://github.com/hassio-addons/repository/
    Gold

    ### JRebirth
    JRebirth is a JavaFX Application Framework used to build efficient desktop applications.
    http://www.jrebirth.org
    Gold

    ### Homeless Intake Manager
    Web based software to manage homeless shelter intake and pantry use
    http://www.switchpointcrc.org/switchpoint_home.php
    Gold

    ### Loopring Protocol
    Loopring is a protocol for building decentralized exchanges. Besides the protocol smart-contracts, Loopring also offers a collection of open-sourced software to help you build decentralized exchanges.
    https://loopring.org
    Gold

    ### aGrUM
    aGrUM is a C++ library designed for easily building applications using graphical models such as Bayesian networks, influence diagrams, decision trees or Markov decision processes.
    http://agrum.gitlab.io
    Gold

    ### Cacophony
    Cacophony is an open-source Discord Bot built using microservices for improved reliability and performance.
    https://gitlab.com/Cacophony
    Gold

    ### Python Discord
    We're a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others. We're a completely voluntary community of Python lovers, and we're passionate about helping our users learn.
    https://pythondiscord.com
    Gold

    ### NoSQLMap
    Automated NoSQL database enumeration and web application exploitation tool for security professionals.
    http://nosqlmap.net/
    Gold

    ### OmniROM
    OmniROM is a Android custom ROM variant.
    https://www.omnirom.org
    Gold

    ### Freeradius Admin
    This project is a web GUI for a FreeRADIUS 3 server with a MySQL backend.
    https://freeradiusadmin-demo.junelsolis.com/
    Gold

    ### AzuraCast
    A self-hosted, all-in-one, turnkey web radio management suite, including a powerful and intuitive web interface for managing every aspect of a web radio station.
    https://azuracast.com
    Gold

    ### Ownlinux
    A Cross Linux from Scratch based Linux Distribution
    https://gitlab.com/overflyer/ownlinux
    Gold

    ### LeafPic
    An ad-free, open-source and material-designed android gallery alternative
    https://gitlab.com/HoraApps/LeafPic
    Gold

    ### PASSY
    Creating an open source password manager solution.
    https://passy.pw
    Gold

    ### Drupal Test Traits
    Traits for testing Drupal sites that have user content (versus unpopulated sites).
    https://gitlab.com/weitzman/drupal-test-traits
    Gold

    ### Board Summary For Trello Chrome Extension
    The Board Summary for Trello extension for Google Chrome retrieves and displays summary data for Trello boards, and allows for creating nested boards (i.e. cards that reference other boards).
    https://gitlab.com/aarongoldenthal/BoardSummaryForTrelloChromeExtension
    Gold

    ### Robigalia
    A highly reliable, persistent capability OS built in rust on the seL4 microkernel.
    https://robigalia.org
    Gold

    ### emberclear
    This project is for demonstrating the latest features of ember and eventually a learning playground for implementation of a private mesh network over the internet.  The application itself is totally encrypted p2p chat.
    https://gitlab.com/NullVoxPopuli/emberclear
    Gold

    ### OrangeFox Recovery Progect
    Fork of TeamWinRecoveryProject(TWRP) with many additional functions, redesign and more
    https://mryacha.github.io/OrangeFox-Site/
    Gold

    ### Joiner
    Joiner is a Java library which allows to create type-safe JPA queries
    https://gitlab.com/eencircled/Joiner
    Gold

    ### EOS Design System
    The EOS Design System is an open source set of guidelines, elements, components, and layouts made to help developers deliver consistent user experience and interfaces, while they concentrate on what they do best: code.
    http://eos-test.herokuapp.com/
    Gold

    ### papirus-netapp
    PaPiRus Netapp is a free script for Raspberry Pi's that uses the PaPiRus E-Paper display to carry out various network testing scripts.
    https://www.talktech.info
    Gold

    ### Tinity
    A open source MMO framework for developing out the backend of online connected games.
    https://www.trinitycore.org/
    Gold

    ### Recultis
    Return to the cult games. On Linux, with modern, open source engines.
    https://makson.gitlab.io/Recultis/
    Gold

    ### CleverSheep
    An open source high level asynchronous testing framework
    https://gitlab.com/LCaraccio/cleversheep
    Gold

    ### GLPI
    GLPI stands for Gestionnaire Libre de Parc Informatique is a Free Asset and IT Management Software package, that provides ITIL Service Desk features, licenses tracking and software auditing.
    http://glpi-project.org/
    Gold

    ### Coinbot
    Coinbot is a discord bot to check the price of many cryptocurrencies.
    https://coinbot.ovh
    Gold

    ### VerusCoin
    VerusCoin is a new, mineable and stakeable cryptocurrency. It is a live fork of Komodo that retains its Zcash lineage and improves it.
    https://veruscoin.io/
    Gold

    ### LeoFS
    An Enterprise Open Source Storage. It is a highly available, distributed, eventually consistent object store.
    https://leo-project.net/leofs/
    Gold

    ### LogicForall: Categorical Syllogisms
    Generates exercises, syllogisms, and propositions of categorical logic. The API can serve this and other educational resources. The UI emphasizes students and instructors to create a positive and accessible learning experience.
    http://logicforall.org/
    Gold

    ### PisiLinux
    Pisi Linux is an open source Linux operating system built around the KDE desktop environment and based on the formaly Pardus Linux distribution.
    https://www.pisilinux.org
    Gold

    ### TatSu
    竜 TatSu generates Python parsers from grammars in a variation of EBNF.
    https://gitlab.com/neogeny/TatSu
    Gold

    ### LibreHealth
    LibreHealth is a collaborative community for free & open source software projects in Health IT, and is a member project of Software Freedom Conservancy.
    https://librehealth.io
    Gold

    ### infoDisplay
    infoDisplay is a telegram bot whose purpose is to have a screen which displays information (pictures or videos) at, for example, schools. I decided to develop it, because everyone in charge of it should be able to upload things to it from home too with a nice looking GUI and without the need to set up a server on ones own.
    https://gitlab.com/liketechnik/infoDisplay
    Gold

    ### Aurora Framework / Aurora Free Software
    A Powerful General Purpose Framework / Free Software Collection
    https://aurorafw.lsferreira.net/
    Gold

    ### OpenSCAD
    OpenSCAD is a multi-platform solid 3D modeling tool (GPL).
    http://openscad.org
    Gold

    ### Fairytale
    Community centric file archiver with state-of-the-art features (recompression, deduplication), giving the users all options from best speed to best compression.
    https://github.com/schnaader/fairytale
    Gold

    ### Zclassic Community Edition
    An open source decentralized p2p permissionless public blockchain leveraging zk-SNARK technology through ZCL cryptocurrency to promote privacy & financial freedom.
    https://zclassic-ce.org
    Gold

    ### Augur
    Augur is an open-source, decentralized, peer-to-peer oracle and prediction market platform built on the Ethereum blockchain.
    https://www.augur.net/
    Gold

    ### HolyDragon Project
    An open source android based fork of OmniROM for OnePlus and other devices
    https://gitlab.com/HolyDragonProject/android
    Gold
    
    ### Fly Delta Virtual: Open Source Projects (OSP)
    Open sourced, community built projects for the phpVMS platform.
    https://gitlab.com/flydeltavirtual/osp
    Ultimate

    ### Hyper-Expanse
    Project scaffolding and release tools to streamline the release process through automation.
    https://gitlab.com/hyper-expanse/open-source
    Gold

    ### Open Cloud Platform
    An open source cloud platform to automate & orchrestrate hybrid cloud and containers. providing IaaS for container for open source & entreprenures.
    https://stackhatch.org
    Gold

    ### GieselaDev
    We're passionate about open-source projects, and love developing intuitive, clean applications ranging from audio to user management - mainly for the Discord platform.
    http://gitlab.giesela.io
    Ultimate

    ### Free Software Mirror Group
    The Free Software Mirror Group is a New Zealand based organisation that provides local mirroring of free software. Our goal is to provide official, high quality, outage free mirroring to New Zealand and the Pacific Islands.
    https://fsmg.org.nz/
    Gold

    ### Orbital Bus
    Orbital Bus is an enterprise service bus project that is mesh-based rather than hub-and-spoke. It seeks to enable enterprises to explore the possibilities of ESB without worrying about licensing costs and with a language-agnostic approach.
    http://orbitalbus.com/
    Gold

    ### Orbital CodeGeneration
    The Orbital Code Generation project is a companion for the Orbital Bus project. It is used to generate components that work with the receiver for consumer services.
    http://codegeneration.orbitalbus.com/
    Gold

    ### Orbital Adapters
    One of the essential components for the Orbital Bus are Adapters. The adapters allow the receiver to communicate to consumers over different protocols, databases, or file systems. Over time more Orbital Adapters will appear for more protocols, databases, and file systems.
    http://adapters.orbitalbus.com/
    Gold

    ### Orbital Connectors
    Orbital Connector is a term we use to refer to the integration library used by producers to send messages to the Receiver. The Connector also handles any response, fault, or timeout received in return. Over time more Orbital Connectors will appear for more languages.
    http://connectors.orbitalbus.com/
    Gold

    ### Sandwich Cloud
    An open source VMWare orchestration system that adds public cloud like features to traditional VMWare vCenter deployments.
    https://github.com/sandwichcloud
    Gold

    ### Budgt
    Helping you plan and keep track of your budget.
    https://gitlab.pahofmann.com/pahofmann/budget
    Ultimate

    ### Jenkins GitLab plugin
    The de-facto Jenkins plugin providing integration with GitLab.
    https://github.com/jenkinsci/gitlab-plugin
    Ultimate

    ### Glucosio
    Glucosio is an open source project dedicated to bringing open source apps to smartphone, desktop and web in order to help people with diabetes improve their health outcomes by better self-management of their disease.
    https://www.glucosio.org
    Ultimate

    ### UBports
    Developer and Mantainer of mobile operative system Ubuntu touch and the Unity8 desktop environment stack
    http://ubports.com/
    Gold

    ### Parity
    Blockchain clients (Bitcoin, Ethereum, Polkadot), written in Rust
    https://github.com/paritytech
    Ultimate

    ### USSRM
    Minecraft server software written entirely in Rust, making Minecraft fast and easy to use so that you don't have to. Dubbed the United Soviet Repositories of Minecraft.
    https://gitlab.com/USSRM
    Gold

    ### LAVA Software Project
    LAVA is a continuous integration system for deploying operating systems onto physical and virtual hardware for running tests.
    https://www.linaro.org/initiatives/lava/
    Ultimate

    ### TygerCaddy
    A Python based reverse proxy app with Web GUI
    https://tygercaddy.com
    Ultimate

    ### Hunter 2
    Hunter 2 is a platform for running puzzle hunts
    https://gitlab.com/hunter2.app/hunter2
    Gold

    ### Free Speedway Manager
    Free Speedway Manager, simple speedway sport manager game, python, pyqt.
    https://gitlab.com/freesm/freesm
    Ultimate

    ### Gibberfish
    Gibberfish provides free software tools to activists
    https://gibberfish.org
    Gold

    ### Pleio
    Pleio is an open source collaboration platform for governments.
    https://www.pleio.nl
    Gold

    ### Machinecoin Project
    Machinecoin is a peer-to-peer, decentralized crypto-currency, based on Litecoin which was created back in 2014.
    https://machinecoin.io
    Ultimate

    ### Zamphyr
    Open and free school platform for School 2.0
    https://zamphyr.com
    Gold

    ### TaxonWorks
    TaxonWorks is an open-source workbench for those studying the Earth's Biodiversity.
    http://taxonworks.org
    Ultimate

    ### CallerInfo Project
    An android app to get phone number location and other info.
    https://github.com/xdtianyu/CallerInfo
    Ultimate

    ### Zest Kernel Projecc
    Custom Linux kernels for various Android devices
    https://gitlab.com/ZKP
    Gold

    ### Unnamed Arma Group
    We are an active group of modders for Bohemia Interactive's Arma franchise, all of our work is open-source and available to the community.
    https://gitlab.com/uag
    Gold

    ### WarEmu
    A Warhammer Online Emulator 1.4.8
    https://github.com/WarEmu/WarEmu
    Ultimate

    ### Autosubmit
    Autosubmit is a python-based tool to create, manage and monitor experiments by using Computing Clusters, HPC’s and Supercomputers remotely via ssh.
    https://earth.bsc.es/gitlab/es/autosubmit
    Ultimate    

    ### Project Yaotsu
    Project Yaotsu is an open source framework for computer architecture simulation
    https://gitlab.com/yaotsu
    Gold

    ### Panto
    A modern monitoring solution
    https://pantomath.io
    Gold

    ### ZeroGravity CMS
    A flat-file based CMS to be used as a drop-in content solution for Symfony projects.
    https://gitlab.com/zero-gravity/zero-gravity-cms
    Gold

    ### RVM
    RVM is a command-line tool which allows you to easily install, manage, and work with multiple Ruby versions.
    https://rvm.io
    Gold

    ### Passit
    Passit is an open source, web based password manager that focuses on simplicity and group sharing. Source code is available at http://gitlab.com/passit/
    https://passit.io
    Gold

    ### Inko
    Inko is a gradually-typed, safe, object-oriented programming language for writing concurrent programs.
    https://inko-lang.org/
    Ultimate

    ### Shizuku
    Shizuku is GPU Pathtracing renderer for hobby artists.
    https://gitlab.com/shizuku-render/Shizuku
    Gold

    ### HydrOffice
    A research framework in ocean mapping (https://www.hydroffice.org)
    https://gitlab.com/HydrOffice
    Gold
    
    ### Fudaa
    Integration Platform For Scientific Codes
    https://fudaa-project.atlassian.net/wiki/spaces/FUDAA/overview
    Gold
    
    ### SIM-ScALA-BIM
    SIM-ScALA-BIM is an Abraca-what? board game clone written in Scala as final project elaboration for University exam.
    https://gitlab.com/abra-team/sim-scala-bim
    Gold
    
    ### eQuartier
    eQuartier is an association under the French law of 1901. We aim to give the local independant shops a way to take back the marketshare of big retail stores and online retailers. We empower local communities build around small local bike transportation companies, local shopkeepers and inhabitants. To do so we're developping an AGPL licenced web platform, first with prestashop and next based on solid project together with the cooperativism platform community in France.
    https://equartier.fr
    Gold
    
    ### malscan
    A linux malware scanner for web servers.
    https://malscan.com
    Gold

    ### Typhon
    Typhon is a secrets manager that aims to provide similar function to an HSM or extend the usage of an HSM.
    https://git.blesstherains.africa/typhon
    Ultimate

    ### OpenCI
    Our vision is to bring our diverse open source communities together by facilitating the communication between us and our integration, deployment, delivery, and automation.
    https://openci.io
    Gold
    
    ### RiSiRiPlugin
    RiSiRiPlugin is a open-source plugin for schools with an warehouse that want to keep track of there stuff. 
    https://github.com/MextroNL/risiriplugin
    Gold
    
    ### Fantom Foundation
    Fantom Foundation engages in blockchain research and open-sources everything.
    https://fantom.foundation
    Ultimate
    
    ### Screencam screen recorder
    Android app to record screen using native API and without root
    https://gitlab.com/vijai/screenrecorder
    Gold
    
    ### Mpm
    A cross-platform Assembler that supports Zilog Z80/Z180/Z380 CPU assembly language. Future works will support Elf format and Arm + Mips CPU's.
    https://gitlab.com/bits4fun/mpm
    Ultimate
    
    ### Propositum
    Combine open-source, portable tools to facilitate task & information management, automation, data manipulation and analytics.
    https://gitlab.com/xeijin/propositum
    Gold
    
    ### PushFish
    We aim to make Push notifications accessible for anyone who doesn't want to rely on others. https://gitlab.com/PushFish
    http://push.fish
    Gold

    ### KWB-R
    Kompetenzzentrum Wasser Berlin gGmbH (KWB) is an international centre for water research and knowledge transfer. We are developing open-source tools 
    (mainly in R) for performing our research in a more reproducible way.  
    https://github.com/kwb-r
    Gold   
    
    ### RedServ
    A semi-fast python web framework.
    https://gitlab.com/Red_M/redserv
    Ultimate

    ### MyBB
    MyBB is a free and open source, community-based forum software project.
    https://mybb.com/
    Gold
    
    ### TreasureHunt
    We develop a treasure hunt game for Android that started out as a student project and now because our hobby.
    https://gitlab.com/mowies/TreasureHunt
    Gold

    ### Aha Event by Forksociety
    Aha! Event is built on the idea of showcasing a curated list of all the FLOSS conferences on a single platform. This helps open source enthusiasts track call for proposal (CFP), important dates, venue details etc. effortlessly. 
    https://www.ahaevent.org
    Ultimate
    
    ### ASE
    Atomic Simulation Environment, A Python library for working with atoms
    https://wiki.fysik.dtu.dk/ase/
    Gold
        
    ### Microservice Patterns
    This project will produce libraries to facilitate Microservice development using CQRS and ES patterns
    https://gitlab.com/cloud.yantra.oss/microservice-patterns-cqrs
    Gold

    ### LineageOS
    A free and open-source operating system for handheld devices, based on the Android mobile platform.
    https://lineageos.org
    Gold
    
    ### HueMagic
    HueMagic provides several input and output nodes for Node-RED and is the most in-depth and easy to use solution to control Philips Hue bridges, lights, groups, scenes, taps, switches, motion sensors, temperature sensors and Lux sensors.
    https://gitlab.com/foddy/huemagic
    Gold
    
    ### LIP Computing
    Experimental Particle Physics Portuguese Laboratory, Computing Center group
    https://www.lip.pt
    Ultimate
    
    ### CodaProtocol
    Coda is a new cryptocurrency with a constant size blockchain, improving scaling while maintaining decentralization and security.
    https://codaprotocol.com
    Gold
    
    ### pynmet
    A python package to easy acess of brazilian meteorological sites data
    https://gitlab.com/sehnem/pynmet
    Gold

    ### Freifunk Frankfurt
    Freifunk is a non-commercial wireless community network providing free and open internet access to the general public for that we are building the Freifunk mesh network in the metropolitan area of Frankfurt. Not just with the goal of supplying Internet access but also with the idea of building a decentralized public network and imparting the knowledge and the technical skills to do so. We use Gitlab for all our developments that are open source.
    https://frickel.cloud/
    Ultimate
    
    ### VoxelGamesLib
    An open source framework to expand the game Minecraft with simple to complex mini games, promoting the use of modularity and enabling content creators without developer knowledge to customize existing or create new minigames by using a data driven approach.   
    https://voxelgameslib.com/docs/ and https://github.com/VoxelGamesLib/VoxelGamesLibv2/
    Ultimate

    ### FWUL
    FWUL - the most reliable adb/fastboot live system ever - to manage ANY Android without driver hassle
    https://code.binbash.it:8443/Carbon-Fusion/build_fwul  (details: http://bit.do/FWULatXDA)
    Ultimate
    
    ### Linuxserver.io
    We containerise dozens of applications from across the web and release them as well documented, maintained and updated containers.
    https://linuxserver.io
    Ultimate

    ### NTPsec
    Secure, hardened, and improved implementation of Network Time Protocol derived from NTP Classic, Dave Mills’s original.
    https://gitlab.com/NTPsec/ntpsec
    
    ### OpenWISP
    OpenWISP is a network management system that allows managing and automating several aspects of a network:
     - dynamic auto-configuration of new nodes
     - creation of VPN tunnels
     - initialization of WiFi access points
     - configuration of mesh networks
     - configuration of any other network configuration supported by OpenWRT
    http://openwisp.org/
    Gold
    
    ### The Hammer
    An open source multifunctional Discord bot
    https://gitlab.com/TheHammerBot
    Gold

    ### Common Ground NLX
    NLX is an open source inter-organisational system facilitating federated authentication, secure connecting and protocolling in a large-scale, dynamic API landscape.
    https://gitlab.com/commonground/nlx
    Gold
    
    ### Open Technologies Alliance - GFOSS
    GFOSS – Open Technologies Alliance  is a non-profit organization founded in 2008, 36 Universities and Research Centers are shareholders of GFOSS. Our main goal is to promote Openness through the use and the development of Open Standards and Open Technologies in Education, Public Administration and Business in Greece. We are platform for Open Standards, Free Software, Open Content, Open Data & Open Hardware in Greece. The major Greek Universities and Research Centers participate in GFOSS – Open Technologies Alliance, while leading members of the Greek community of developers play a key role in the implementation of our policies.
    http:/gfoss.eu
    Gold

    ### Our-Sci
    We are building a scientific platform to easily run experiments using Android and pretty much any kind of hardware that supports USB Serial or BT Serial. Our goal is to make possible for everyone to build their own survey, run measurements and compare results with other contributors.
    http://blog.our-sci.net/
    Gold
    
    ### Daedalus Project
    Daedalus project aims to be a powerfull in interface for managing orchestrated applications and server configuration across multiple SaaS providers.
    https://git.daedalus-project.io/daedalusproject
    Ultimate
    
    ### Glasgow Haskell Compiler
    An industrial-strength implementation of the Haskell programming language
    http://ghc.haskell.org/
    Gold
    
    ### Neurochain
    Neurochain is a new augmented blockchain based on intelligent decision making mechanisms.
    https://www.neurochaintech.io/
    Gold
    
    ### @apifie/node-microservice
    node-microservice is a Node JS module / framework / boiler-plate / blueprint to accelerate and standardize micro-services development
    https://gitlab.com/apifie/nodems/node-microservice
    Gold    
    
    ### @apifie/full-feature-micro-service-example
    It provies some examples / samples to use @apifie/node-microservice (above)
    https://gitlab.com/apifie/nodems/examples/full-feature-micro-service-example
    Gold  

    ### nikita-noark5-core
    The Oslo Metropolitan University implementation of the Norwegian recordkeeping standard Noark
    https://gitlab.com/OsloMet-ABI/nikita-noark5-core
    Gold

    ### Internet Cleanup Foundation / Failmap
    A safer internet through transparency: on a mission to have 1.000.000 vulnerabilities fixed, forever.
    Showcase: https://faalkaart.nl Repo: https://gitlab.com/failmap
    Gold
    
    ### uMod
    Universal modding platform and plugin API for Unity, Unreal, .NET/C#, and C++ games
    https://umod.org
    Gold
    ### Cucumber Linux
    Cucumber Linux aims to provide a Linux distribution that is usable as an every day, general purpose operating system. It aims to do this in as minimalistic a way as possible and in a way that follows the Unix Philosophy. Our mission is three fold: to focus on the distribution's simplicity, stability and security. 
    https://cucumberlinux.com/
    Ultimate
    ### Gitlab server EMBL-EBI
    Gitlab server hosting Open Spurce project from EMBL-EBI
    https://gitlabci.ebi.ac.uk or https://gitlab.ebi.ac.uk
    Ultimate
    
    ### ArrayExpress
MIAME-standard compliant resource that stores functional genomics experiments performed using RNA-Seq/ChIP-Seq and array-based technologies
https://www.ebi.ac.uk/arrayexpress
ultimate
### BioModels
BioModels is a database of published mathematical models describing biological processes.
https://www.ebi.ac.uk/biomodels
ultimate
### BioSamples
The BioSamples database aggregates sample information for reference samples (e.g. Coriell Cell lines) and samples for which data exist in one of the EBI's assay databases, such as ArrayExpress, the European Nucleotide Archive or Proteomics Identificates Database.
https://www.ebi.ac.uk/biosamples
ultimate
### BioStudies
The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI."
https://www.ebi.ac.uk/biostudies
ultimate
### Chemical Entitites of Biological Interest
ChEBI (Chemical Entities of Biological Interest) is a dictionary of small molecular entities. It is manually annotated and provides a chemistry ontology to describe small molecules, including their biological and chemical roles.
https://www.ebi.ac.uk/chebi
ultimate
### ChEMBL
ChEMBL is a database of bioactive compounds that focuses on interactions between small molecules and their macromolecular targets, including medicinal chemistry, clinical development and therapeutics data."
https://www.ebi.ac.uk/chembl
ultimate
### Complex Portal
The Complex Portal is a manually curated, encyclopaedic resource of macromolecular complexes from a number of key model organisms. All data is freely available for search and download.
https://www.ebi.ac.uk/complexportal
ultimate
### EBI Metagenomics
The Metagenomics portal is an automated pipeline for the analysis and archiving of metagenomic data.
https://www.ebi.ac.uk/metagenomics
ultimate
### EBI Search
High performance text search engine specifically design for biological and biomedical data
https://www.ebi.ac.uk/ebisearch
ultimate
### Experimental Factor Ontology
The Experimental Factor Ontology (EFO) provides a systematic description of many experimental variables available in EBI databases, and for external projects such as the NHGRI GWAS catalog. It combines parts of several biological ontologies, such as UBERON anatomy, ChEBI chemical compounds, and Cell Ontology.
https://www.ebi.ac.uk/efo
ultimate
### European Genome-phenome Archive
The European Genome-phenome Archive (EGA) allows users to explore datasets from numerous genotype experiments-including case-control, population and family studies-that are supplied by a range of data providers.
https://www.ebi.ac.uk/ega
ultimate
### Electron Microscopy Data Bank
The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography.
https://www.ebi.ac.uk/emdb
ultimate
### Electron Microscopy Public Image Archive
EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw, 2D electron microscopy images. Here, you can browse, upload, download and reprocess the thousands of raw, 2D images used to build a 3D structure
https://www.ebi.ac.uk/empiar
ultimate
### European Nucleotide Archive
The European Nucleotide Archive (ENA), a member of the International Nucleotide Sequence Database Collaboration, contains all the nucleotide sequences in the public domain and consolidates data from EMBL-Bank, the European Trace Archive and the Sequence Read Archive.
https://www.ebi.ac.uk/ena
ultimate
### Ensembl Curated annotation on selected eukaryotic genomes.
https://www.ensembl.org
ultimate
### Ensembl Genomes
Ensembl Genomes is a portal providing access to genome-scale data from bacteria, protists, fungi, plants and invertebrate metazoa, through a unified set of interactive and programmatic interfaces based on the Ensembl software platform.
https://www.ensemblgenomes.org
ultimate
### Enzyme Portal
The Enzyme Portal integrates publicly available information from: the UniProt Knowledgebase; the Protein Data Bank in Europe; Rhea, a database of enzyme-catalyzed reactions; Reactome; IntEnz, a resource with enzyme nomenclature information; ChEBI; ChEMBL; Cofactor and MACiE.
https://www.ebi.ac.uk/ensymeportal
ultimate
### EuropePMC
Europe PubMedCentral (EuropePMC) contains over 2 million full text life science research articles, of which around 400 000 are open access. It incorporates CiteXplore content and functions to provide integrated text-mining tools as well as grant-reporting services.
http://www.europepmc.org
ultimate
### European Variation Archive,The European Variation Archive is an open-access database of all types of genetic variation data from all species.
https://www.ebi.ac.uk/eva
ultimate
### Expression Atlas
The Expression Atlas allows users to search for gene expression changes measured in various cell types, organism parts, and disease states. It represents a curated subset of the ArrayExpress Achive experiments.
https://www.ebi.ac.uk/gxa
ultimate
### The Gene Ontology
The Gene Ontology (GO) provides a controlled vocabulary to describe gene and gene product attributes in any organism.
https://www.ebi.ac.uk/goa
ultimate
### NHGRI-EBI Catalog of published genome-wide association studies
The Catalog is a quality controlled, manually curated, literature-derived collection of all published genome-wide association studies assaying at least 100,000 SNPs and all SNP-trait associations with p-values < 1.0 x 10-5 (Hindorff et al., 2009).
https://www.ebi.ac.uk/gwas
ultimate
### HGNC
HGNC is responsible for approving unique symbols and names for human loci, including protein coding genes, ncRNA genes and pseudogenes, to allow unambiguous scientific communication.
https://www.genenames.org
ultimate
### Identifiers.org
Identifiers.org is a system providing resolvable persistent URIs used to identify data for the scientific community, with a current focus on the Life Sciences domain.
https://www.identifiers.org
ultimate
### International Genome Sample Resource/1000 Genomes
The International Genome Sample Resource (IGSR) was established to ensure the ongoing usability of data generated by the 1000 Genomes Project and to extend the data set. The goal of the 1000 Genomes Project was to find most genetic variants with frequencies of at least 1% in the populations studied.
http://www.1000genomes.org
ultimate
### IntAct
IntAct provides a freely available, open source database system and analysis tools for molecular interaction data.
https://www.ebi.ac.uk/intact
ultimate
### IntEnz
IntEnz is a database of enzyme nomenclature that also provides enzyme classifications based on the nature of catalysed reactions. IntEnz is produced in collaboration with the SIB Swiss Institute of Bioinformatics.
https://www.ebi.ac.uk/intenz
ultimate
### InterPro
Classifies proteins into families and predicts the presence of important domains and sites
https://www.ebi.ac.uk/interpro
ultimate
### MetaboLights
MetaboLights is a database for metabolomics experiments and derived information.
https://www.ebi.ac.uk/metabolights
ultimate
### IMPC
The International Mouse Phenotyping Consortium (IMPC) is an international scientific endeavour to create and characterize the phenotype of 20,000 knockout mouse strains.
https://www.ebi.ac.uk/impc
ultimate
### OLS
The Ontology Lookup Service provides a web service interface to query multiple ontologies from a single location with a unified output fromat.
https://www.ebi.ac.uk/ols
ultimate
### Protein Databank in Europe
The Protein Data Bank in Europe (PDBe) is the European part of the wwPDB for the collection, organisation and dissemination of data on biological macromolecular structures.
https://www.ebi.ac.uk/pdbe
ultimate
### Pfam
Pfam is a large collection of protein families represented by multiple sequence alignments and hidden Markov models.
https://pfam.xfam.org
ultimate
### PRIDE
PRIDE (The Proteomics Identifications Database) is a standards-compliant, public repository for proteomics data. It contains protein and peptide identifications and their associated supporting evidence.
https://www.ebi.ac.uk/pride
ultimate
### Reactome
Database of human biological pathways built from connected reactions that encompass all biological events as well as classical biochemical events.
https://www.reactome.org
ultimate
### Rfam
The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models.
https://rfam.xfam.org
ultimate
### RNAcentral 
RNAcentral is a public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of Expert Databases.
https://www.rnacentral.org
ultimate
### SureChEMBL
SureChEMBL is a publicly available large-scale resource containing compounds extracted from the full text, images and attachments of patent documents.
https://www.surechembl.org/search/
ultimate
### UniChem
UniChem is a very simple, large-scale non-redundant database of pointers between chemical structures and EMBL-EBI chemistry resources.
https://www.ebi.ac.uk/unichem
ultimate
### Universal Protein Resource
Curated annotation of publicly available portein sequences
https://www.uniprot.org
ultimate


    ### Libre Space Foundation
    A non-profit organization creating open source space technologies.
    https://libre.space
    ### Astian OS
    It is an operating system based on Ubuntu but inheriting the concept of Firefox OS, we developed an operating system that fully promotes WebApps, user privacy and security. At the moment Astian OS is aimed at desktop and ARM devices and later will be for mobile devices. Using the desktop environment Sauce Desktop also free software project using GTK and web technology. Developed by [Astian Foundation](ḧttps://astian.org)
    https://www.astian.org/astian-os
    Gold
    ### PantherX OS
    The only user-friendly desktop operating system, that gives people without a PHD in computer science, the power to control how their computer operates and connects.
    https://www.pantherx.org/
    Ultimate


### ella
Open source variant interpretation tool
https://allel.es
Gold

### Event Store
An open-source and functional database in Java.
https://gitlab.com/mwillema/eventstore
Gold

### Okapi Framework
A cross-platform and free open-source set of components and applications that offer extensive support for localizing and translating documentation and software.
http://okapiframework.org/
Gold
### MathHub.info
MathHub.info is a portal for active mathematical documents and knowledge. It uses [a slightly patched instance of GitLab](http://gl.mathhub.info) for storing and versioning the source and generated files representing the mathematical knowledge.
https://mathhub.info
Ultimate
    ### Fork AD
    Fork AD is a fork of 0 A.D. a free, open-source,
    cross-platform real-time strategy game of ancient warfare.
    https://gitlab.com/fork-ad
    Gold
    
### Amethyst Engine
     A free, open-source game engine written in Rust
     https://amethyst.rs
     Gold
     
     
### cqOS
We're CryptoQuarry Inc, a small team of engineers working on fully autonomous and self-healing crypto mining warehouses. We noticed there's no usable open source OS for mining crypto, and that lots of people have capitalized on making very minor features and selling them for major costs. We want to change that space and create a free, open-source OS that miners can use at any scale: small, medium, or large! The whole spirit of cryptocurrencies is that everything is community-driven and that any layman can start mining, and we want to help bridge that gap. 
https://gitlab.com/CryptoQuarry/cqOS
Gold