├── README.md └── projects ├── ask_open_science ├── _meta.json └── icon.svg ├── biodiversity_heritage_library └── _meta.json ├── luftdaten-info.json ├── nextstrain.json ├── open_science_training_handbook └── _meta.json ├── openplant └── _meta.json ├── protocols_io └── _meta.json ├── pubpub └── _meta.json └── statquest └── _meta.json /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Folder structure 3 | Collected information on projects can be found in the `/projects` folder in the root directory. A separate folder is assigned to each project. The folder name of a project must be unique within the collection and all spaces must be replaced by underscore (e.g. `example_project_name`). 4 | ``` 5 | /projects 6 | /{project_name} 7 | _meta.json ← Project description 8 | icon.svg ← Project logo 9 | ``` 10 | **Obligatory** 11 | - Every project directory must contain a `_meta.json` file, in which all meta data is stored in a uniform format. 12 | 13 | **Optional** 14 | - ICON: If a project can be associated with a logo, it is saved in `icon.svg`. 15 | 16 |

17 | ## Metadata structure 18 | ``` 19 | { 20 | "name": , ← Project Name 21 | "desc": , ← Project Description [...] >= 1 22 | "tags": [], ← Project Search Tags 23 | "page": null OR , ← Project Website URL 24 | "socl": [] OR [], ← Projects social accounts, List of URL's 25 | "cmcl": null OR bool, ← Whether or not this project is commercial 26 | "founded": null OR , ← Date of project creation 27 | "ceased": null OR , ← Date of project termination 28 | "edit": , ← Last edit date UTC format as UNIX timestamp 29 | } 30 | ``` 31 | 32 | 33 | ``` 34 | // STRING_LANG 35 | // An object that contains a string (text) and indicates the language used. 36 | { 37 | "lng": , ← ISO 639-2/T 38 | "txt": , ← text 39 | } 40 | 41 | // MULTILANG 42 | // A slice of 'STRING_LANG' objects; Each language indicator must be unique within a list. 43 | [...] 44 | 45 | IDEA: 46 | { 47 | "txt": , 48 | "lng": , 49 | "int": , ← translations 50 | } 51 | ``` 52 | -------------------------------------------------------------------------------- /projects/ask_open_science/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ask Open Science", 3 | "desc": "A non-commercial OpenScience Q&A site run by Bielefeld University Library, Germany.", 4 | "tags": ["Q&A", "FAQ", "Forum"], 5 | "page": "https://ask-open-science.org", 6 | "socl": [ 7 | "https://scicomm.xyz/@askopenscience", 8 | ], 9 | "founded": null, 10 | "ceased": null, 11 | "succeeds": null, 12 | "edit": "1581698489", 13 | } 14 | -------------------------------------------------------------------------------- /projects/ask_open_science/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects/biodiversity_heritage_library/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Biodiversity Heritage Library", 3 | "desc": [ 4 | {"lng": "ENG","txt": "Inspiring discovery through free access to biodiversity knowledge. The Biodiversity Heritage Library improves research methodology by collaboratively making biodiversity literature openly available to the world as part of a global biodiversity community."}, 5 | ], 6 | "tags": [ 7 | {"lng": "ENG","txt": "biology"}, 8 | {"lng": "ENG","txt": "library"}, 9 | {"lng": "ENG","txt": "diversity"}, 10 | ], 11 | "page": "http://biodiversitylibrary.org/", 12 | "socl": [ 13 | "https://www.facebook.com/BioDivLibrary", 14 | "https://twitter.com/BioDivLibrary", 15 | "https://www.instagram.com/biodivlibrary", 16 | "https://www.pinterest.com/biodivlibrary", 17 | "https://biodivlibrary.tumblr.com/", 18 | ], 19 | "cmcl": null, 20 | "founded": null, 21 | "ceased": null, 22 | "edit": 1611351023, 23 | } 24 | -------------------------------------------------------------------------------- /projects/luftdaten-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "luftdaten.info", 3 | "desc": [ 4 | {"lng": "DEU", "txt": "Feinstaubalarm! In der Hauptstadt des Staus werden regelmäßig die Grenzwerte überschritten. Wie kann die Luftqualität in Stuttgart gemessen und visualisiert werden? Welche Auswirkungen hat das hohe Verkehrsaufkommen in Stuttgart auf unsere Luft? Wie hoch ist die Belastung durch Feinstaub und Stickoxide in Wohngebieten auch abseits des berüchtigten Neckartors? Diesen und weiteren Fragen gehen wir nach, indem wir Feinstaub Sensoren bauen und die Daten in ein Gesamtbild visualisieren."}, 5 | ], 6 | "tags": ["Feinstaub", "Stuttgart", "Stickoxide", "Luftqualität"], 7 | "page": "https://luftdaten.info/", 8 | "socl": [], 9 | "founded": null, 10 | "ceased": null, 11 | "commercial": null, 12 | "edit": 1583238896, 13 | } 14 | -------------------------------------------------------------------------------- /projects/nextstrain.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nextstrain", 3 | "desc": "Real-time tracking of pathogen evolution Nextstrain is an open-source project to harness the scientific and public health potential of pathogen genome data. We provide a continually-updated view of publicly available data alongside powerful analytic and visualization tools for use by the community. Our goal is to aid epidemiological understanding and improve outbreak response. If you have any questions, or simply want to say hi, please give us a shout at hello@nextstrain.org.", 4 | "page": "https://nextstrain.org/", 5 | "founded": null, 6 | "ceased": null, 7 | "succeeds": null, 8 | "edit": "1581698489", 9 | } 10 | -------------------------------------------------------------------------------- /projects/open_science_training_handbook/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Open Science Training Handbook", 3 | "desc": [{"lng": "ENG","txt": "A group of fourteen authors came together in February 2018 at the TIB (German National Library of Science and Technology) in Hannover to create an open, living handbook on Open Science training. High-quality trainings are fundamental when aiming at a cultural change towards the implementation of Open Science principles. Teaching resources provide great support for Open Science instructors and trainers. The Open Science training handbook will be a key resource and a first step towards developing Open Access and Open Science curricula and andragogies. Supporting and connecting an emerging Open Science community that wishes to pass on their knowledge as multipliers, the handbook will enrich training activities and unlock the community’s full potential."}], 4 | "tags": [{"lng": "ENG","txt": "handbook"}], 5 | "page": "https://github.com/Open-Science-Training-Handbook", 6 | "socl": ["https://github.com/Open-Science-Training-Handbook","https://www.fosteropenscience.eu/content/open-science-training-handbook"], 7 | "cmcl": null, 8 | "founded": null, 9 | "ceased": null, 10 | "edit": 1606818763, 11 | } 12 | -------------------------------------------------------------------------------- /projects/openplant/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OpenPlant", 3 | "desc": [{"lng": "ENG","txt": "OpenPlant is a collaborative research initiative between the University of Cambridge, The John Innes Centre and the Earlham Institute. Our goal is to use synthetic biology for the improvement of sustainable agriculture and conservation in three key areas: 1) OPEN TOOLS AND TECHNOLOGIES 2) ENGINEERING PLANT TRAITS AND PRODUCTS 3) RESPONSIBLE RESEARCH AND INNOVATION\nOur activities include research and development, as well as outreach and exchange. Core areas of interest include: developing new technologies, creating new open standards and open-access tools, and supporting global innovation for development of an equitable and sustainable bioeconomy."}], 4 | "tags": [{"lng": "ENG","txt": "biology"},{"lng": "ENG","txt": "collaborative"}], 5 | "page": "https://www.openplant.org/", 6 | "socl": ["https://twitter.com/_OpenPlant"], 7 | "cmcl": null, 8 | "founded": null, 9 | "ceased": null, 10 | "edit": 1606745099, 11 | } 12 | -------------------------------------------------------------------------------- /projects/protocols_io/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Protocols.io", 3 | "desc": "A secure platform for developing and sharing reproducible methods and procedures.", 4 | "tags": [], 5 | "page": "https://www.protocols.io/", 6 | "socl": [ 7 | "https://twitter.com/protocolsio", 8 | "https://www.facebook.com/protocols.io", 9 | "https://www.linkedin.com/company/protocolsio", 10 | ], 11 | "founded": null, 12 | "ceased": null, 13 | "succeeds": null, 14 | "edit": null, 15 | } 16 | -------------------------------------------------------------------------------- /projects/pubpub/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PubPub", 3 | "desc": "The open-source, privacy-respecting, all-in-one collaborative publishing platform for communities small and large. Manage, evolve & perfect your publishing process. With PubPub, one tool supports your entire content workflow from drafting to review, publication, and reader engagement. Work efficiently, flexibly, and collaboratively to better support knowledge creation and dissemination.", 4 | "tags": ["publishing", "collaborative", "opensource", "privacy", "platform"], 5 | "page": "https://www.pubpub.org/", 6 | "socl": [ 7 | "https://twitter.com/pubpub", 8 | "https://github.com/pubpub", 9 | "hello@pubpub.org" 10 | ], 11 | "founded": null, 12 | "ceased": null, 13 | "succeeds": null, 14 | "edit": "1613482133", 15 | } 16 | -------------------------------------------------------------------------------- /projects/statquest/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "StatQuest with Josh Starmer", 3 | "desc": [{"lng": "ENG","txt": "StatQuest aims to break down complicated Statistics and Machine Learning methods into small, bite-sized pieces that are easy to understand. StatQuest doesn't dumb down the material, instead, it builds you up so that you are smarter and have a better understanding of Statistics and Machine Learning."}], 4 | "tags": [{"lng": "ENG","txt": "statistic"},{"lng": "ENG","txt": "machine learning"},{"lng": "ENG","txt": "mathematics"},{"lng": "ENG","txt": "education"}], 5 | "page": "https://www.youtube.com/channel/UCtYLUTtgS3k1Fg4y5tAhLbw", 6 | "socl": ["https://www.patreon.com/statquest"], 7 | "cmcl": null, 8 | "founded": null, 9 | "ceased": null, 10 | "edit": 1610368428, 11 | } 12 | --------------------------------------------------------------------------------