Skip to content

Commit

Permalink
small social tweaks, fix clear script
Browse files Browse the repository at this point in the history
  • Loading branch information
hubsmoke committed Feb 21, 2024
1 parent f747ba5 commit 41fa9f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 2 additions & 6 deletions desci-server/src/data/communities.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@
],
"image_url": "https://pub.desci.com/ipfs/bafkreie7kxhzpzhsbywcrpgyv5yvy3qxcjsibuxsnsh5olaztl2uvnrzx4",
"slug": "gridcoin",
"requiredAttestations": [
"Reproducibility Enabled",
"Used BOINC",
"Used Folding@home"
],
"requiredAttestations": ["Reproducibility Enabled", "Used BOINC", "Used Folding@home"],
"members": ["Gridcoin Network"],
"links": ["https://gridcoin.us", "https://boinc.berkeley.edu"]
},
Expand Down Expand Up @@ -109,7 +105,7 @@
"links": ["https://moondao.com", "https://twitter.com/OfficialMoonDAO"]
},
{
"name": "Scientific Advances by DeSci Foundation",
"name": "DeSci Foundation",
"subtitle": "High-quality research across all disciplines",
"keywords": ["Original Research", "Open Science", "Reproducibility", "Metascience", "Interdisciplinary"],
"description": "All selected contributions can participate in the [DeSci Fund for Scientific Innovation](https://help.artizen.fund/en/articles/8387161-desci-fund-for-scientific-innovation). Outstanding contributions that demonstrate or advance best open science practices are eligible to compete for the DeSci Foundation Open Science Award ($3000).\n\n## Aims and Scope\n\nCurated by the DeSci Foundation, our feed provides a platform for disseminating high-quality research. We select original empirical research, theoretical and methodological contributions, as well as high-quality reviews, perspectives, comments, educational materials and correspondence related to the robustness and trustworthiness of the scientific record.\n\nWe welcome contributions emphasising open science practices, such as open data, open code, preregistered analysis plans, computational reproducibility, and replication studies. We prioritise rigor and transparency in scientific inquiry, aiming to shift the focus from subjective novelty claims or statistical significance to the robustness and reliability of research methodologies.\n\n### Emphasis on Replicability, Robustness, and Transparency:\n\n- Manuscripts reporting empirical research results should prioritize sharing data and code to the extent possible, actively facilitating readers' ability to reproduce and validate results independently.\n- Authors are encouraged to utilize the versionability of DeSci Nodes to enhance transparency throughout the research process, incorporating best practices such as commencing a research project with a detailed analysis plan.\n\n### Cross- and interdisciplinary:\n\n- We welcome contributions from all scientific disciplines and encourage interdisciplinary collaborations, fostering the exchange of open-science practices across fields.\n\n### Metascience:\n\n- Contributions utilizing scientific methodology to study science itself, including replication studies, mechanism design, or philosophy of science, are strongly encouraged.\n\nBy prioritizing open science practices, our feed aims to contribute to a culture of transparency, collaboration, and continuous improvement in scientific research. We believe that this approach will not only enhance the credibility of published research but also foster a community dedicated to advancing the reliability and reproducibility of scientific knowledge.\n\n## Prizes\n\nOutstanding scientific advances that demonstrate or advance best open science practices are eligible to compete for our annual Open Science Award ($3000).\n\nIn addition, the DeSci Foundation has partnered with [Artizen.Fund](https://www.artizen.fund/) to provide $10,000 of matched funding to support scientists’ innovative research via the [DeSci Fund for Scientific Innovation](https://help.artizen.fund/en/articles/8387161-desci-fund-for-scientific-innovation). All contributions selected by this feed are eligible to apply. To participate, create a visual representation of your research called an [Artifact](https://help.artizen.fund/en/articles/6604052-what-are-artifacts). Your Artifact can be any image, video, or gif that captures the spark of inspiration behind your work. Submit your Artifact and project description to https://vote.artizen.fund/submit. Selected contributions will be highlighted with an open-edition NFT. The proceeds from NFT sales and matched funding will be paid to the authors.\n\n## About Us\n\nThe DeSci Foundation is a non-profit organization registered in Geneva, Switzerland. Led by leading scientists and entrepreneurs, our mission is to explore and support improvements in the scientific ecosystem based on insights from meta-science and new opportunities afforded by cutting-edge technologies.",
Expand Down
3 changes: 2 additions & 1 deletion desci-server/src/scripts/DESTRUCTIVE-clear-social-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ export const clearSocialData = async () => {
});
await prisma.communityEntryAttestation.deleteMany({});
await prisma.attestationVersion.deleteMany({});
await prisma.attestation.deleteMany({});
await prisma.nodeAttestationReaction.deleteMany({});
await prisma.nodeAttestationVerification.deleteMany({});
await prisma.nodeAttestation.deleteMany({});
await prisma.attestationVersion.deleteMany({});
await prisma.attestation.deleteMany({});
await prisma.desciCommunity.deleteMany({});
};

Expand Down

0 comments on commit 41fa9f6

Please sign in to comment.